summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/BannerLoader.cpp
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2009-01-24 22:24:44 +0000
committernakeee <nakeee@gmail.com>2009-01-24 22:24:44 +0000
commit2e92b94e4a28de7998c4d372f9838527c9fc60ca (patch)
treeed5a1992e5be6605b5a022762b254fdb8b3eb94d /Source/Core/DiscIO/Src/BannerLoader.cpp
parent0db67cf51c85796a33b75139e7eb6f0225b7bd3d (diff)
Compile fix on linux
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2005 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/Src/BannerLoader.cpp')
-rw-r--r--Source/Core/DiscIO/Src/BannerLoader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/Src/BannerLoader.cpp b/Source/Core/DiscIO/Src/BannerLoader.cpp
index d14d40363f..a36e4e0ebc 100644
--- a/Source/Core/DiscIO/Src/BannerLoader.cpp
+++ b/Source/Core/DiscIO/Src/BannerLoader.cpp
@@ -170,8 +170,8 @@ bool IBannerLoader::CopyUnicodeToString( std::string& _rDestination, const u16*
}
}
#else
- // not implement other than windows
- _rDestination = _src;
+ // FIXME: Horribly broke on non win32
+ // _rDestination = _src;
returnCode = true;
#endif
return returnCode;