removed annoying printf printing delta time every frame

This commit is contained in:
Matthew Jennings 2025-11-29 18:38:26 +02:00
parent 1bc5105272
commit e28d00d529

View file

@ -136,7 +136,6 @@ int main(int argc, char *argv[]) {
LAST = NOW;
NOW = SDL_GetPerformanceCounter();
deltaTime = (double)((NOW - LAST)*1000 / (double)SDL_GetPerformanceFrequency() );
printf("%f\n", deltaTime);
int mouseX = 0;
int mouseY = 0;