Remove fps title

This commit is contained in:
2024-02-11 16:48:17 +01:00
parent bb54002fa3
commit 02fb325e3b

View File

@@ -423,9 +423,9 @@ void update(float dt, void *userData) {
return; return;
BZ_UNUSED(userData); BZ_UNUSED(userData);
char titleBuf[32]; //char titleBuf[32];
snprintf(titleBuf, sizeof(titleBuf), "FPS: %d | %.2f ms", GetFPS(), GetFrameTime() * 1000); //snprintf(titleBuf, sizeof(titleBuf), "FPS: %d | %.2f ms", GetFPS(), GetFrameTime() * 1000);
SetWindowTitle(titleBuf); //SetWindowTitle(titleBuf);
Game *game = ecs_singleton_get_mut(ECS, Game); Game *game = ecs_singleton_get_mut(ECS, Game);
InputState *input = ecs_singleton_get_mut(ECS, InputState); InputState *input = ecs_singleton_get_mut(ECS, InputState);