mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 10:40:47 +00:00
Fix tautological comparison in savegame.cpp
git-svn-id: https://svn.eduke32.com/eduke32@8314 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
abdd807e7f
commit
7698f73b55
1 changed files with 1 additions and 1 deletions
|
@ -466,7 +466,7 @@ int32_t G_LoadPlayer(savebrief_t & sv)
|
|||
if (currentboardfilename[0])
|
||||
{
|
||||
// only setup art if map differs from previous
|
||||
if (!previousboardfilename[0] || previousboardfilename != currentboardfilename)
|
||||
if (!previousboardfilename[0] || Bstrcmp(previousboardfilename, currentboardfilename))
|
||||
artSetupMapArt(currentboardfilename);
|
||||
Bstrcpy(previousboardfilename, currentboardfilename);
|
||||
append_ext_UNSAFE(currentboardfilename, ".mhk");
|
||||
|
|
Loading…
Reference in a new issue