summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO
diff options
context:
space:
mode:
authorMatthew Parlane <parlane@gmail.com>2013-11-05 00:33:41 +1300
committerMatthew Parlane <parlane@gmail.com>2013-11-05 00:33:41 +1300
commite15f6289354bb815edbb7cf7925e47c5216a844e (patch)
tree237c468b7cef538f48cdd534d8704dd4dd84a4d0 /Source/Core/DiscIO
parent3f1ea21e4fabdd672bd33ed01a8d1495ec5056e7 (diff)
Fix {Read,Write}FileToString.
We should be using binary always.
Diffstat (limited to 'Source/Core/DiscIO')
-rw-r--r--Source/Core/DiscIO/Src/VolumeDirectory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/Src/VolumeDirectory.cpp b/Source/Core/DiscIO/Src/VolumeDirectory.cpp
index b949932b0b..f9f8f00ea8 100644
--- a/Source/Core/DiscIO/Src/VolumeDirectory.cpp
+++ b/Source/Core/DiscIO/Src/VolumeDirectory.cpp
@@ -287,7 +287,7 @@ bool CVolumeDirectory::SetApploader(const std::string& _rApploader)
if (!_rApploader.empty())
{
std::string data;
- if (!File::ReadFileToString(false, _rApploader.c_str(), data))
+ if (!File::ReadFileToString(_rApploader.c_str(), data))
{
PanicAlertT("Apploader unable to load from file");
return false;
@@ -320,7 +320,7 @@ void CVolumeDirectory::SetDOL(const std::string& _rDOL)
if (!_rDOL.empty())
{
std::string data;
- File::ReadFileToString(false, _rDOL.c_str(), data);
+ File::ReadFileToString(_rDOL.c_str(), data);
m_DOLSize = data.size();
m_DOL = new u8[m_DOLSize];
copy(data.begin(), data.end(), m_DOL);