summaryrefslogtreecommitdiff
path: root/src/os_timer.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-11-26 13:12:45 +0000
committerrubidium <rubidium@openttd.org>2008-11-26 13:12:45 +0000
commit5dd4735da1b08170c36c004d439e6484f7cd2715 (patch)
treec580b06966266044ef5c0a54b557d872556e989d /src/os_timer.cpp
parentb0a9ce2d9a71e5d53e78ccaac3fae5bf79f76a91 (diff)
downloadopenttd-5dd4735da1b08170c36c004d439e6484f7cd2715.tar.xz
(svn r14636) -Add: DOS port of OpenTTD, without network support though.
Diffstat (limited to 'src/os_timer.cpp')
-rw-r--r--src/os_timer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_timer.cpp b/src/os_timer.cpp
index 0166a445c..bf0a171de 100644
--- a/src/os_timer.cpp
+++ b/src/os_timer.cpp
@@ -35,7 +35,7 @@ unsigned __int64 ottd_rdtsc();
#endif
/* rdtsc for all other *nix-en (hopefully). Use GCC syntax */
-#if defined(__i386__) || defined(__x86_64__) && !defined(RDTSC_AVAILABLE)
+#if (defined(__i386__) || defined(__x86_64__)) && !defined(__DJGPP__) && !defined(RDTSC_AVAILABLE)
uint64 ottd_rdtsc()
{
uint32 high, low;