mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-20 19:39:41 +00:00
Fix dead code
This commit is contained in:
parent
5561eb5415
commit
34873b6065
2 changed files with 1 additions and 3 deletions
|
@ -712,7 +712,7 @@ std::string creatureFlags(int flags)
|
|||
if (flags & ESM::Creature::Respawn) properties += "Respawn ";
|
||||
if (flags & ESM::Creature::Weapon) properties += "Weapon ";
|
||||
if (flags & ESM::Creature::Essential) properties += "Essential ";
|
||||
int unused = (0xFF ^
|
||||
int unused = (0xFFFFFFFF ^
|
||||
(ESM::Creature::Base|
|
||||
ESM::Creature::Walks|
|
||||
ESM::Creature::Swims|
|
||||
|
|
|
@ -347,8 +347,6 @@ namespace Compiler
|
|||
scanner.putbackName (name, loc);
|
||||
return false;
|
||||
}
|
||||
|
||||
return Parser::parseName (name, loc, scanner);
|
||||
}
|
||||
|
||||
bool ExprParser::parseKeyword (int keyword, const TokenLoc& loc, Scanner& scanner)
|
||||
|
|
Loading…
Reference in a new issue