1
0
Fork 1
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:
Marc Zinnschlag 2013-08-23 14:49:41 +02:00
parent c56007cceb
commit 537ab38985

View file

@ -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;