Noteskin name in PlayerOptions needs to be compared case-insensitive when comparing PlayerOptions structures. The old code that used != probably relied on RString::operator!= misbehaving.

This commit is contained in:
Kyzentun Keeslala
2015-11-05 21:56:43 -07:00
parent cbb76cf22f
commit d496f8145c
2 changed files with 17 additions and 4 deletions
+1 -1
View File
@@ -203,7 +203,7 @@ public:
}
else
{
LuaHelpers::ReportScriptErrorFmt("Unknown row flag \"%s\".", sName.c_str());
LuaHelpers::ReportScriptErrorFmt("Unknown row flag \"%s\" on row %s.", sName.c_str(), m_Def.m_sName.c_str());
}
}
for( int col = 0; col < NumCols; ++col )