diff --git a/src/main.cpp b/src/main.cpp index 08e3673..d94499c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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 diff --git a/src/render.c b/src/render.c index b297dd8..8ec408e 100644 --- a/src/render.c +++ b/src/render.c @@ -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 }