Merge pull request #112 from vylsaz/develop

Fix profiler_getResults on windows
This commit is contained in:
dzaima 2024-06-04 15:48:46 +03:00 committed by GitHub
commit 556082fd4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1663,7 +1663,7 @@ bool profiler_alloc() {
bool profiler_start(i32 mode, i64 hz) { return false; }
bool profiler_stop() { return false; }
void profiler_free() { thrM("Profiler not supported"); }
usz profiler_getResults(B* compListRes, B* mapListRes, u64 specialResults[ENT_SP_END], bool keyPath) { thrM("Profiler not supported"); }
usz profiler_getResults(B* compListRes, B* mapListRes, u64 specialResults[], bool keyPath) { thrM("Profiler not supported"); }
void profiler_displayResults() { thrM("Profiler not supported"); }
#endif