mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-03-10 11:11:51 +00:00
correct preprocessor fall-through for stats.h
(linux)
This commit is contained in:
parent
0937068dad
commit
7ba5a74f2e
1 changed files with 3 additions and 1 deletions
|
@ -78,7 +78,7 @@ inline uint64_t rdtsc()
|
|||
#elif defined __aarch64__
|
||||
// TODO: Implement and test on ARM64
|
||||
return 0;
|
||||
#else // i386
|
||||
#elif defined __i386__
|
||||
if (CPU.bRDTSC)
|
||||
{
|
||||
uint64_t tsc;
|
||||
|
@ -86,6 +86,8 @@ inline uint64_t rdtsc()
|
|||
return tsc;
|
||||
}
|
||||
return 0;
|
||||
#else
|
||||
return 0;
|
||||
#endif // __amd64__
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue