summaryrefslogtreecommitdiff
path: root/src/win32.cpp
diff options
context:
space:
mode:
authorKUDr <kudr@openttd.org>2007-02-27 23:12:45 +0000
committerKUDr <kudr@openttd.org>2007-02-27 23:12:45 +0000
commitfbd6a88d02035fad651a342f74221dc152342451 (patch)
tree19b93e311b3e1bcb7a09dda5b4ecb03a841fabfa /src/win32.cpp
parenteb1af4a65eb15660792154a3772c0f04dbad8029 (diff)
downloadopenttd-fbd6a88d02035fad651a342f74221dc152342451.tar.xz
(svn r8933) -Fix [Win64]: rdtsc now uses intrinsic on VC8 (michi_cc)
Diffstat (limited to 'src/win32.cpp')
-rw-r--r--src/win32.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/win32.cpp b/src/win32.cpp
index b59621aa6..396c38d82 100644
--- a/src/win32.cpp
+++ b/src/win32.cpp
@@ -606,10 +606,13 @@ static LONG WINAPI ExceptionHandler(EXCEPTION_POINTERS *ep)
return EXCEPTION_EXECUTE_HANDLER;
}
+#ifdef _M_AMD64
+extern "C" void *_get_save_esp(void);
+#endif
+
static void Win32InitializeExceptions(void)
{
#ifdef _M_AMD64
- extern void *_get_save_esp(void);
_safe_esp = _get_save_esp();
#else
_asm {