Make warning about falling back to base.dll more visible

.. by surrounding it with newlines.
This warning is shown when trying to start a mod without its game dll
(because the user has forgotten to unpack the mod dll archive, or
 because it's a mod that doesn't have its own dll).
Surrounding it with empty lines hopefully makes it easier for users
to figure out what went wrong when they look at the log.
This commit is contained in:
Daniel Gibson 2022-06-08 03:22:12 +02:00
parent 42b37b039e
commit 89c44d7ac9

View file

@ -2657,7 +2657,8 @@ void idCommonLocal::LoadGameDLL( void ) {
// there was no gamelib for this mod, use default one from base game
if (!gameDLL) {
common->Warning( "couldn't load mod-specific %s, defaulting to base game's library!", dll );
common->Printf( "\n" );
common->Warning( "couldn't load mod-specific %s, defaulting to base game's library!\n", dll );
sys->DLL_GetFileName(BASE_GAMEDIR, dll, sizeof(dll));
LoadGameDLLbyName(dll, s);
}