minor change: remove print line debugging
This commit is contained in:
parent
1f4abeaa00
commit
6ae1bdbfd7
@ -35,13 +35,13 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
// Initialisiere SDL
|
// Initialisiere SDL
|
||||||
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
|
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;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialisiere SDL_ttl, um Text ausgeben zu können
|
// Initialisiere SDL_ttl, um Text ausgeben zu können
|
||||||
if (TTF_Init() == -1) {
|
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;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -63,7 +63,7 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
if(game.gameState == PAUSE)
|
if(game.gameState == PAUSE)
|
||||||
{
|
{
|
||||||
printf("PAuse\n");
|
LOGI("Spielmodus: Pause\n");
|
||||||
}
|
}
|
||||||
if (game.gameState == RUNNING) {
|
if (game.gameState == RUNNING) {
|
||||||
now = GET_TIME_MS(); // Timer startet
|
now = GET_TIME_MS(); // Timer startet
|
||||||
|
@ -241,7 +241,6 @@ void renderSettings()
|
|||||||
//=========== only first loop ================
|
//=========== only first loop ================
|
||||||
if(ttlStorage.lastTimeStep == 0)
|
if(ttlStorage.lastTimeStep == 0)
|
||||||
{
|
{
|
||||||
printf("In first loop\n");
|
|
||||||
ttlStorage.ptrFont_20 = TTF_OpenFont("../fonts/Prototype.ttf", ttlStorage.fontSize_20);
|
ttlStorage.ptrFont_20 = TTF_OpenFont("../fonts/Prototype.ttf", ttlStorage.fontSize_20);
|
||||||
SDL_StartTextInput(); // start text input
|
SDL_StartTextInput(); // start text input
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user