diff options
author | Charadon <dev@iotib.net> | 2022-06-14 19:03:59 -0400 |
---|---|---|
committer | Charadon <dev@iotib.net> | 2022-06-14 19:03:59 -0400 |
commit | 10af293becc1e2549c698a50bd05bb463a9939ec (patch) | |
tree | 0f8d6290db5ab39605d0439b7947817015ddd2aa /src | |
parent | 5b2a771069efef2d32028fe3ddd394320070d332 (diff) | |
download | Pong-C-10af293becc1e2549c698a50bd05bb463a9939ec.tar.gz |
Removed some debug stuff
Diffstat (limited to 'src')
-rw-r--r-- | src/title.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/title.c b/src/title.c index da732ba..9fe11cf 100644 --- a/src/title.c +++ b/src/title.c @@ -475,7 +475,6 @@ int title_screen() { if(NoScores == 1) { goto skip; } - printf("%c\n", Top10[0].Name[0]); char LeaderboardText[1024]; for (int i = 1; i <= 10; i++) { if(Top10[i-1].Name[0] != '\0') { //If name is blank, that means we're at the end of the list. @@ -498,7 +497,6 @@ int title_screen() { EndMode2D(); DrawText(VersionString, GetScreenWidth()-400, GetScreenHeight()-32, 32, GREEN); EndDrawing(); - printf("%lf, %d\n", GetTime()-Started, SDL_AtomicGet(&Ticks)); } Mix_HaltMusic(); Mix_FreeMusic(TitleMusic); |