diff options
author | belugas <belugas@openttd.org> | 2008-03-07 02:40:10 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2008-03-07 02:40:10 +0000 |
commit | 82e340c3257672fb3a3f0b833e231dd60850757c (patch) | |
tree | c571ee0efd48e28d36c600e0ecf27727deef29a5 /src | |
parent | 2c74f39273144839b9381e1a1c62768f33e22810 (diff) | |
download | openttd-82e340c3257672fb3a3f0b833e231dd60850757c.tar.xz |
(svn r12349) -Change[FS#1826]: Remove the need to include the afxres.h header when all that was needed was just the definition if IDC_STATIC.
Only valid for MSVC compilers.
Diffstat (limited to 'src')
-rw-r--r-- | src/ottdres.rc.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ottdres.rc.in b/src/ottdres.rc.in index 72e1d813e..27d79897e 100644 --- a/src/ottdres.rc.in +++ b/src/ottdres.rc.in @@ -13,7 +13,7 @@ #ifdef MSVC #include "winres.h" #else -#include "afxres.h" +#define IDC_STATIC (-1) // all static controls #endif ///////////////////////////////////////////////////////////////////////////// |