summaryrefslogtreecommitdiff
path: root/src/game/world/map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/world/map.cpp')
-rw-r--r--src/game/world/map.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/world/map.cpp b/src/game/world/map.cpp
index aba283d..53cfe22 100644
--- a/src/game/world/map.cpp
+++ b/src/game/world/map.cpp
@@ -518,13 +518,13 @@ WORLD_MAP* map_from_file( GAME_DATA* game, const char* path ) {
CFG_SECTION* skybox = cfg_section( s, "skybox" );
if( !skybox ) {
dlog( errstr, path, "skybox" );
- dlog( "using default skybox" );
+ dlog( "using default skybox\n" );
m->skybox = map_default_skybox();
}
else {
if( !OK( map_skybox_from_section( skybox, game, m ) ) ) {
dlog( errstr, path, "skybox" );
- dlog( "using default skybox" );
+ dlog( "using default skybox\n" );
m->skybox = map_default_skybox();
}
}