mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 23:23:52 +00:00
fixed type in error message
This commit is contained in:
parent
c56007cceb
commit
537ab38985
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ bool CSMFilter::TextNode::test (const CSMWorld::IdTable& table, int row,
|
||||||
const std::map<int, int>::const_iterator iter = columns.find (mColumnId);
|
const std::map<int, int>::const_iterator iter = columns.find (mColumnId);
|
||||||
|
|
||||||
if (iter==columns.end())
|
if (iter==columns.end())
|
||||||
throw std::logic_error ("invalid column in test node test");
|
throw std::logic_error ("invalid column in text node test");
|
||||||
|
|
||||||
if (iter->second==-1)
|
if (iter->second==-1)
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue