diff options
author | Travis Howell | 2006-09-23 01:08:39 +0000 |
---|---|---|
committer | Travis Howell | 2006-09-23 01:08:39 +0000 |
commit | 1e4dc7f5b6f38d088876699cdb8d3bab30dbc45e (patch) | |
tree | 5ba6f04734785163d72db6ae57b8d1fb55f23074 /common | |
parent | 17d4f41a88023fbf4d1393e9a5fac454e98bee92 (diff) | |
download | scummvm-rg350-1e4dc7f5b6f38d088876699cdb8d3bab30dbc45e.tar.gz scummvm-rg350-1e4dc7f5b6f38d088876699cdb8d3bab30dbc45e.tar.bz2 scummvm-rg350-1e4dc7f5b6f38d088876699cdb8d3bab30dbc45e.zip |
Remove duplicate and left over _WIN32_WCE checks
svn-id: r23977
Diffstat (limited to 'common')
-rw-r--r-- | common/scummsys.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/common/scummsys.h b/common/scummsys.h index 898d902edb..90b269ccd7 100644 --- a/common/scummsys.h +++ b/common/scummsys.h @@ -106,11 +106,6 @@ #define NORETURN _declspec(noreturn) #define PLUGIN_EXPORT __declspec(dllexport) - #if defined(_WIN32_WCE) && _WIN32_WCE < 300 - #define CDECL __cdecl - #define SMALL_SCREEN_DEVICE - #endif - typedef signed char int8_t; typedef signed short int16_t; typedef unsigned char uint8_t; @@ -334,7 +329,7 @@ #define NORETURN _declspec(noreturn) #define PLUGIN_EXPORT __declspec(dllexport) - #if defined(_WIN32_WCE) && _WIN32_WCE < 300 + #if _WIN32_WCE < 300 #define CDECL __cdecl #define SMALL_SCREEN_DEVICE #endif |