mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Print message to console at startup when successfully loading a RTS file instead of when the RTS file is missing
git-svn-id: https://svn.eduke32.com/eduke32@6533 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
c5ebf96217
commit
bf2047bc0f
1 changed files with 3 additions and 3 deletions
|
@ -48,11 +48,11 @@ static int32_t RTS_AddFile(const char *filename)
|
||||||
// FIXME: shared opens
|
// FIXME: shared opens
|
||||||
|
|
||||||
handle = kopen4loadfrommod(filename, 0);
|
handle = kopen4loadfrommod(filename, 0);
|
||||||
|
|
||||||
if (handle < 0)
|
if (handle < 0)
|
||||||
{
|
|
||||||
initprintf("RTS file \"%s\" was not found\n",filename);
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
else
|
||||||
|
initprintf("RTS file \"%s\" loaded\n", filename);
|
||||||
|
|
||||||
startlump = rts_numlumps;
|
startlump = rts_numlumps;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue