convert Warning() and DEBUG() to GFX2_Log()

This commit is contained in:
Thomas Bernard
2018-07-12 20:41:49 +02:00
parent 90bcffa9e2
commit 4978a7cfe2
11 changed files with 111 additions and 79 deletions

View File

@@ -1093,11 +1093,13 @@ int Get_input(int sleep_time)
// Drop of zero files. Thanks for the information, Bill.
}
}
#else
GFX2_Log(GFX2_DEBUG, "Unhandled SDL_SYSWMEVENT\n");
#endif
break;
default:
//DEBUG("Unhandled SDL event number : ",event.type);
GFX2_Log(GFX2_DEBUG, "Unhandled SDL event number : %d\n",event.type);
break;
}
}