minor change: remove print line debugging

This commit is contained in:
Hanse-14 2023-12-20 17:03:14 +01:00
parent 1f4abeaa00
commit 6ae1bdbfd7
2 changed files with 3 additions and 4 deletions

View File

@ -35,13 +35,13 @@ int main(int argc, char *argv[])
// Initialisiere SDL
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
printf("SDL konnte nicht initialisiert werden! SDL_Error: %s\n", SDL_GetError());
LOGI("SDL: SDL konnte nicht initialisiert werden! SDL_Error: %s\n", SDL_GetError());
return 1;
}
// Initialisiere SDL_ttl, um Text ausgeben zu können
if (TTF_Init() == -1) {
printf("SDL_ttf konnte nicht initialisiert werden! SDL_Error: %s\n");
LOGI("SDL: SDL_ttf konnte nicht initialisiert werden! SDL_Error: %s\n");
return 1;
}
@ -63,7 +63,7 @@ int main(int argc, char *argv[])
}
if(game.gameState == PAUSE)
{
printf("PAuse\n");
LOGI("Spielmodus: Pause\n");
}
if (game.gameState == RUNNING) {
now = GET_TIME_MS(); // Timer startet

View File

@ -241,7 +241,6 @@ void renderSettings()
//=========== only first loop ================
if(ttlStorage.lastTimeStep == 0)
{
printf("In first loop\n");
ttlStorage.ptrFont_20 = TTF_OpenFont("../fonts/Prototype.ttf", ttlStorage.fontSize_20);
SDL_StartTextInput(); // start text input
}