summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/ImageWrite.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2017-01-15 22:46:43 +0100
committerJosJuice <josjuice@gmail.com>2017-06-15 21:34:04 +0200
commitcf94ce63051458a2d8ac8b340a1020b863f1a6dd (patch)
tree89f54c7ce532186cf87d0d64270bf2ec77d78643 /Source/Core/VideoCommon/ImageWrite.cpp
parentf09ceaa735080b8cde5f9102e7f061530d9b474e (diff)
Add a namespace to OpenFStream
For consistency with the other functions in FileUtil.h.
Diffstat (limited to 'Source/Core/VideoCommon/ImageWrite.cpp')
-rw-r--r--Source/Core/VideoCommon/ImageWrite.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/ImageWrite.cpp b/Source/Core/VideoCommon/ImageWrite.cpp
index f944a37fb8..585ba5e13b 100644
--- a/Source/Core/VideoCommon/ImageWrite.cpp
+++ b/Source/Core/VideoCommon/ImageWrite.cpp
@@ -16,7 +16,7 @@
bool SaveData(const std::string& filename, const std::string& data)
{
std::ofstream f;
- OpenFStream(f, filename, std::ios::binary);
+ File::OpenFStream(f, filename, std::ios::binary);
f << data;
return true;