Browse Source

Merge pull request #28 from FreeSlave/vs6_fix

Change __MSC_VER to _MSC_VER to make the client buildable with VS 6
asheep
mittorn 7 years ago committed by GitHub
parent
commit
0e8090c046
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      engine/cdll_int.h

2
engine/cdll_int.h

@ -93,7 +93,7 @@ typedef struct client_textmessage_s @@ -93,7 +93,7 @@ typedef struct client_textmessage_s
const char *pMessage;
} client_textmessage_t;
#if __MSC_VER == 1200
#if _MSC_VER == 1200
#define ulonglong_t __int64
#else
#define ulonglong_t unsigned long long

Loading…
Cancel
Save