File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
GeneralsMD/Code/GameEngine/Source/GameClient Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -647,10 +647,10 @@ Bool MapCache::addMap(
647647 md.m_CRC = calcCRC (fname);
648648
649649 Bool exists = false ;
650- AsciiString munkee = worldDict.getAsciiString (TheKey_mapName, &exists);
651- md.m_nameLookupTag = munkee ;
650+ AsciiString nameLookupTag = worldDict.getAsciiString (TheKey_mapName, &exists);
651+ md.m_nameLookupTag = nameLookupTag ;
652652
653- if (!exists || munkee .isEmpty ())
653+ if (!exists || nameLookupTag .isEmpty ())
654654 {
655655 DEBUG_LOG ((" Missing TheKey_mapName!" ));
656656 AsciiString tempdisplayname;
@@ -671,7 +671,7 @@ Bool MapCache::addMap(
671671 stringFileName.truncateBy (4 );
672672 stringFileName.concat (" \\ map.str" );
673673 TheGameText->initMapStringFile (stringFileName);
674- md.m_displayName = TheGameText->fetch (munkee );
674+ md.m_displayName = TheGameText->fetch (nameLookupTag );
675675 if (md.m_numPlayers >= 2 )
676676 {
677677 UnicodeString extension;
You can’t perform that action at this time.
0 commit comments