diff --git a/stepmania/src/CryptHelpers.cpp b/stepmania/src/CryptHelpers.cpp index df6da8f2b1..21b1d01f64 100644 --- a/stepmania/src/CryptHelpers.cpp +++ b/stepmania/src/CryptHelpers.cpp @@ -124,8 +124,6 @@ void RageFileSink::IsolatedInitialize(const NameValuePairs ¶meters) const char *fileName; if (parameters.GetValue("OutputFileName", fileName)) { - // does this do anything other than cause g++ to emit a warning? - ios::openmode binary = parameters.GetValueWithDefault("OutputBinaryMode", true) ? ios::binary : ios::openmode(0); if( !m_file.Open( fileName, RageFile::WRITE ) ) // trucates existing data throw OpenErr(fileName); }