fix fallback profiler_start signature

This commit is contained in:
dzaima 2023-04-22 01:27:46 +03:00
parent 2d29b8a29f
commit 2f59dec8b7

View File

@ -1639,7 +1639,7 @@ bool profiler_alloc() {
printf("Profiler not supported\n");
return false;
}
bool profiler_start(i64 hz) { return false; }
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, bool keyPath) { thrM("Profiler not supported"); }