Fixed a crash bug on AMD64 dealing with integer sizes (bug #895)

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2410 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
mcmartin
2006-08-17 02:47:44 +00:00
parent 665b0cef52
commit 775dfc683c
2 changed files with 5 additions and 3 deletions
+2
View File
@@ -1,4 +1,6 @@
Changes towards version 0.6:
- Fixed an integer-size error that was causing crashes on AMD64, from
Solomon Peachy (#895) - Michael
- Added some generic lib code to be used by future code. - SvdB
- Joystick support is now optional; from SvdB, Alex
- Restructed and normalized savegame and game-state reading/writing code;
+3 -3
View File
@@ -32,9 +32,9 @@ extern void InitGroupInfo (BOOLEAN FirstTime);
extern void UninitGroupInfo (void);
extern BOOLEAN GetGroupInfo (DWORD offset, BYTE which_group);
extern DWORD PutGroupInfo (DWORD offset, BYTE which_group);
#define GROUPS_RANDOM 0L
#define GROUPS_ADD_NEW (~0L)
#define GROUP_LIST 0
#define GROUPS_RANDOM ((DWORD)(0L))
#define GROUPS_ADD_NEW ((DWORD)(~0L))
#define GROUP_LIST ((BYTE)0)
#define GROUP_INIT_IP ((BYTE)~0)
#define GROUP_LOAD_IP GROUP_LIST
#define GROUP_SAVE_IP ((BYTE)~0)