aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorPaweł Kołodziejski2005-02-25 20:16:25 +0000
committerPaweł Kołodziejski2005-02-25 20:16:25 +0000
commit6746d89df586dba76faa2600cf7c76e0c750c9cb (patch)
treeeb2b47631cfcdf0566bcaba5827aebeba0e51b35 /backends
parenta73906443b9aeb5a64344511895b0525b32a18fe (diff)
downloadscummvm-rg350-6746d89df586dba76faa2600cf7c76e0c750c9cb.tar.gz
scummvm-rg350-6746d89df586dba76faa2600cf7c76e0c750c9cb.tar.bz2
scummvm-rg350-6746d89df586dba76faa2600cf7c76e0c750c9cb.zip
ops
svn-id: r16918
Diffstat (limited to 'backends')
-rw-r--r--backends/fs/windows/windows-fs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/fs/windows/windows-fs.cpp b/backends/fs/windows/windows-fs.cpp
index d9ee110f0f..42300f62c2 100644
--- a/backends/fs/windows/windows-fs.cpp
+++ b/backends/fs/windows/windows-fs.cpp
@@ -75,7 +75,7 @@ const TCHAR* WindowsFilesystemNode::toUnicode(const char *x) {
return (const TCHAR *)x;
#else
static const TCHAR unicodeString[MAX_PATH];
- MultiByteToWideChar(CP_ACP, 0, x, strlen(x) + 1, (const TCHAR *)unicodeString, sizeof(unicodeString));
+ MultiByteToWideChar(CP_ACP, 0, x, strlen(x) + 1, (TCHAR *)unicodeString, sizeof(unicodeString));
return unicodeString;
#endif
}