projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
1aa0de3
)
fix mkdir on win32
author
Matthias Braun
<matze@braunis.de>
Thu, 5 May 2005 13:32:05 +0000
(13:32 +0000)
committer
Matthias Braun
<matze@braunis.de>
Thu, 5 May 2005 13:32:05 +0000
(13:32 +0000)
SVN-Revision: 2406
src/main.cpp
patch
|
blob
|
history
diff --git
a/src/main.cpp
b/src/main.cpp
index
4b022d7
..
3907d4e
100644
(file)
--- a/
src/main.cpp
+++ b/
src/main.cpp
@@
-51,6
+51,10
@@
#include "game_session.h"
#include "file_system.h"
+#ifdef WIN32
+#define mkdir(dir, mode) mkdir(dir)
+#endif
+
SDL_Surface* screen = 0;
JoystickKeyboardController* main_controller = 0;
TinyGetText::DictionaryManager dictionary_manager;