1
0
mirror of https://gitlab.com/pholy/OSCAR-code.git synced 2025-04-24 14:40:45 +00:00

__int16_t not work in MSW build

This commit is contained in:
Mark Watkins 2011-06-07 13:00:18 +10:00
parent c70ca20c2f
commit ff343d19b4
3 changed files with 11 additions and 11 deletions
Projects/CodeBlocks
src
libs/sleeplib/loader_plugins
version.h

View File

@ -8201,7 +8201,7 @@
"wx/treebase.h"
"wx/hashmap.h"
1307358939 source:/home/mark/projects/git/sleepyhead/src/GUIFrame.cpp
1307415331 source:/home/mark/projects/git/sleepyhead/src/GUIFrame.cpp
"wx/wxprec.h"
<wx/wx.h>
"GUIFrame.h"
@ -8295,7 +8295,7 @@
<sleeplib/machine.h>
<list>
1307413738 /home/mark/projects/git/sleepyhead/src/version.h
1307415583 /home/mark/projects/git/sleepyhead/src/version.h
1307358939 /home/mark/projects/git/sleepyhead/src/libs/sleeplib/prs1_loader.h
"machine.h"

View File

@ -91,9 +91,9 @@ bool CMS50Loader::OpenSPORFile(wxString path,Machine *mach,Profile *profile)
wxFFile f;
unsigned char tmp[256];
__int16_t data_starts;
__int16_t some_code;
__int16_t some_more_code;
wxInt16 data_starts;
wxInt16 some_code;
wxInt16 some_more_code;
int num_records;
int br;

View File

@ -16,14 +16,14 @@ namespace AutoVersion{
//Standard Version Type
static const long MAJOR = 0;
static const long MINOR = 7;
static const long BUILD = 3349;
static const long REVISION = 1420;
static const long BUILD = 3350;
static const long REVISION = 1424;
//Miscellaneous Version Types
static const long BUILDS_COUNT = 532;
#define RC_FILEVERSION 0,7,3349,1420
#define RC_FILEVERSION_STRING "0, 7, 3349, 1420\0"
static const char FULLVERSION_STRING[] = "0.7.3349.1420";
static const long BUILDS_COUNT = 539;
#define RC_FILEVERSION 0,7,3350,1424
#define RC_FILEVERSION_STRING "0, 7, 3350, 1424\0"
static const char FULLVERSION_STRING[] = "0.7.3350.1424";
//These values are to keep track of your versioning state, don't modify them.
static const long BUILD_HISTORY = 0;