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:
@@ -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 )
|
||||
|
||||
Reference in New Issue
Block a user