From 32f6d7e7fcb8c0978c8f1e303dbbd38349a7aaef Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 6 Jun 2004 23:21:43 +0000 Subject: [PATCH] cleanup: all files are binary unless GetLine()/PutLine() are used --- stepmania/src/CryptHelpers.cpp | 2 -- 1 file changed, 2 deletions(-) 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); }