Temporary MSVC fix to r749
git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@761 4a71c877-e1ca-e34f-864e-861f7616d084master
parent
66252e097c
commit
30faef0ce8
|
@ -1,6 +1,6 @@
|
|||
2006-09-07: Version 2.0.5 RC1
|
||||
* General:
|
||||
* New: Added beacons for skirmish and multiplayer, can be placed on map and radar, default key combination: Alt+H
|
||||
* New: Added beacons for skirmish and multiplayer, can be placed on map and radar, only sent to the players to which you have an opened communication channel. Default key combination: Alt+H
|
||||
* New: Allied players send vision to each other automatically (only once)
|
||||
* New: Non-Mac versions can now load Mac-created savegames and the other way round
|
||||
* New: Ctrl+MouseWheel makes game speed up or slow down
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
# endif /* WZ_CC_GNU */
|
||||
|
||||
# if defined(WZ_CC_MSVC)
|
||||
# if defined()_DEBUG)
|
||||
# if defined(_DEBUG)
|
||||
# define DEBUG
|
||||
# define _CRTDBG_MAP_ALLOC
|
||||
# include <stdlib.h>
|
||||
|
|
|
@ -12,6 +12,11 @@
|
|||
#error Framework header files MUST be included from Frame.h ONLY.
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
# define WIN32_LEAN_AND_MEAN
|
||||
# include <windows.h>
|
||||
#endif // WIN32
|
||||
|
||||
#include <SDL/SDL_types.h>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
|
|
Loading…
Reference in New Issue