fix mkdir on win32
authorMatthias Braun <matze@braunis.de>
Thu, 5 May 2005 13:32:05 +0000 (13:32 +0000)
committerMatthias Braun <matze@braunis.de>
Thu, 5 May 2005 13:32:05 +0000 (13:32 +0000)
SVN-Revision: 2406

src/main.cpp

index 4b022d7..3907d4e 100644 (file)
 #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;