diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-12-26 16:00:23 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-12-26 17:01:54 -0500 |
| commit | 8ce3a4aa7014c378d4121979f3fd10b9886d38bc (patch) | |
| tree | 2b5221c8457b0ce489f165cb4cc926901ad32705 /Source/Core/VideoCommon/ImageWrite.cpp | |
| parent | be8410dcade41f4e1d69cbdbfc46dfce9635287f (diff) | |
ShaderGeneration: Get rid of static buffers
Diffstat (limited to 'Source/Core/VideoCommon/ImageWrite.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/ImageWrite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/ImageWrite.cpp b/Source/Core/VideoCommon/ImageWrite.cpp index f50c5d02b4..e8c55088c1 100644 --- a/Source/Core/VideoCommon/ImageWrite.cpp +++ b/Source/Core/VideoCommon/ImageWrite.cpp @@ -12,7 +12,7 @@ #include "Common/Logging/Log.h" #include "VideoCommon/ImageWrite.h" -bool SaveData(const std::string& filename, const char* data) +bool SaveData(const std::string& filename, const std::string& data) { std::ofstream f; OpenFStream(f, filename, std::ios::binary); |
