diff options
author | Paweł Kołodziejski | 2005-02-25 20:16:25 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2005-02-25 20:16:25 +0000 |
commit | 6746d89df586dba76faa2600cf7c76e0c750c9cb (patch) | |
tree | eb2b47631cfcdf0566bcaba5827aebeba0e51b35 | |
parent | a73906443b9aeb5a64344511895b0525b32a18fe (diff) | |
download | scummvm-rg350-6746d89df586dba76faa2600cf7c76e0c750c9cb.tar.gz scummvm-rg350-6746d89df586dba76faa2600cf7c76e0c750c9cb.tar.bz2 scummvm-rg350-6746d89df586dba76faa2600cf7c76e0c750c9cb.zip |
ops
svn-id: r16918
-rw-r--r-- | backends/fs/windows/windows-fs.cpp | 2 |
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 } |