diff options
author | rubidium <rubidium@openttd.org> | 2014-01-02 09:14:13 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2014-01-02 09:14:13 +0000 |
commit | 298b003db129eeeeaf1129a138db3125928045b8 (patch) | |
tree | eb28a83996932f4efa4f62ffed09478a57873a69 | |
parent | 9ee447731a1660652866bb946195cfb90649a8e8 (diff) | |
download | openttd-298b003db129eeeeaf1129a138db3125928045b8.tar.xz |
(svn r26199) -Fix (r29197): typo in function name
-rw-r--r-- | src/cpu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu.cpp b/src/cpu.cpp index ce923cfe9..0ebb4c1aa 100644 --- a/src/cpu.cpp +++ b/src/cpu.cpp @@ -89,7 +89,7 @@ uint64 ottd_rdtsc() {return 0;} */ #if defined(_MSC_VER) void ottd_cpuid(int info[4], int type) - __cpuiid(info, type); + __cpuid(info, type); } #elif defined(__x86_64__) || defined(__i386) void ottd_cpuid(int info[4], int type) |