mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-02-17 01:31:47 +00:00
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:
parent
42b37b039e
commit
89c44d7ac9
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue