mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-03 17:09:40 +00:00
corrected an error message
This commit is contained in:
parent
9b0766b678
commit
679754b305
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ bool CSMFilter::ValueNode::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 value test");
|
throw std::logic_error ("invalid column in value node test");
|
||||||
|
|
||||||
if (iter->second==-1)
|
if (iter->second==-1)
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue