diff options
| author | aura <nw@moneybot.cc> | 2026-02-25 08:58:39 +0100 |
|---|---|---|
| committer | aura <nw@moneybot.cc> | 2026-02-25 08:58:39 +0100 |
| commit | 3e5e15a4923c752be703d7afb1214d5e5a767fad (patch) | |
| tree | d76049a556bd0fff581a018408faa6bed23b74eb /src/game/world/map.cpp | |
| parent | 25da8e01a0499c273357cb2feb2825b53e86795b (diff) | |
finish wall collisions (clipvelocity), some utils
Diffstat (limited to 'src/game/world/map.cpp')
| -rw-r--r-- | src/game/world/map.cpp | 4 |
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(); } } |
