File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 25
25
*/
26
26
#define SDL_MAIN_USE_CALLBACKS
27
27
#include < SDL3/SDL_main.h>
28
+ #include < SDL3/SDL_log.h>
28
29
#include < time.h>
29
30
#include < stdio.h>
30
31
#include " main.hpp"
@@ -38,7 +39,7 @@ bool newGame=false;
38
39
SaveGame saveGame;
39
40
UserPref userPref;
40
41
UmbraEngine engine (" ./data/cfg/umbra.txt" ,UMBRA_REGISTER_ALL);
41
- TCODImage background (0 , 0 ); // Unused
42
+ TCODImage background (0 , 0 ); // Unused, "./data/img/background.png" missing
42
43
TCODParser config;
43
44
44
45
HDRColor getHDRColorProperty (const TCODParser &parser,const char *name) {
@@ -163,6 +164,7 @@ SDL_AppResult SDL_AppEvent(void*, SDL_Event* event) { return engine.onEvent(*eve
163
164
SDL_AppResult SDL_AppIterate (void *) { return engine.onFrame (); }
164
165
165
166
SDL_AppResult SDL_AppInit (void **, int argc, char ** argv) {
167
+ SDL_SetLogPriorities (SDL_LOG_PRIORITY_VERBOSE);
166
168
// read main configuration file
167
169
config.run (" data/cfg/config.txt" ,NULL );
168
170
ConditionType::init ();
You can’t perform that action at this time.
0 commit comments