diff --git a/stepmania/src/StdString.h b/stepmania/src/StdString.h index 1aff1d619f..82720962ad 100644 --- a/stepmania/src/StdString.h +++ b/stepmania/src/StdString.h @@ -812,13 +812,18 @@ public: // RString Facade Functions: // // The following methods are intended to allow you to use this class as a - // drop-in replacement for RString. + // drop-in replacement for CString. // ------------------------------------------------------------------------- int CompareNoCase(PCMYSTR szThat) const { return ssicmp(this->c_str(), szThat); } + bool EqualsNoCase(PCMYSTR szThat) const + { + return CompareNoCase(szThat) == 0; + } + // ------------------------------------------------------------------------- // GetXXXX -- Direct access to character buffer // -------------------------------------------------------------------------