Stub Sys_GetClockTicks for x86_64

This is only used for debugging/stats.
This commit is contained in:
dhewg 2011-12-01 14:20:24 +01:00
parent 6b1e27b157
commit ab201cfc06

View file

@ -257,7 +257,7 @@ double Sys_GetClockTicks( void ) {
: "=r" (lo), "=r" (hi) );
return (double) lo + (double) 0xFFFFFFFF * hi;
#else
#error unsupported CPU
return 0.0;
#endif
}