1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-29 12:45:11 +00:00
serenity/Ports/openttd/patches/rdtsc.patch
2021-04-23 20:15:49 +02:00

12 lines
532 B
Diff

diff -Naur openttd-1.11.0/src/cpu.cpp openttd-1.11.0.serenity/src/cpu.cpp
--- openttd-1.11.0/src/cpu.cpp 2021-04-22 01:14:21.038920133 +0200
+++ openttd-1.11.0.serenity/src/cpu.cpp 2021-04-22 01:13:56.638440518 +0200
@@ -40,7 +40,7 @@
#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(__serenity__) && !defined(RDTSC_AVAILABLE)
uint64 ottd_rdtsc()
{
uint32 high, low;