diff --git a/src/twn_loop.c b/src/twn_loop.c index 9f62e93..4380e5c 100644 --- a/src/twn_loop.c +++ b/src/twn_loop.c @@ -305,7 +305,7 @@ static bool initialize(void) { { char *config_file = file_to_str("/twn.toml"); if (config_file == NULL) { - CRY_PHYSFS("Configuration file loading failed"); + CRY("Configuration file loading failed", "Cannot access /twn.toml"); goto fail; } @@ -314,7 +314,7 @@ static bool initialize(void) { SDL_free(config_file); if (ctx.config_table == NULL) { - CRY("Configuration file loading failed", errbuf); + CRY("Configuration file pasing failed", errbuf); goto fail; } }