summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd')
-rw-r--r--src/osd/strconv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/strconv.cpp b/src/osd/strconv.cpp
index 2f4809e529d..d3b898cd492 100644
--- a/src/osd/strconv.cpp
+++ b/src/osd/strconv.cpp
@@ -117,7 +117,7 @@ int osd_uchar_from_osdchar(UINT32 *uchar, const char *osdchar, size_t count)
// The multibyte char can't be bigger than the max character size
count = MIN(count, cp.MaxCharSize);
- if (!MultiByteToWideChar(CP_ACP, 0, osdchar, static_cast<DWORD>(count), &wch, 1) != 0)
+ if (MultiByteToWideChar(CP_ACP, 0, osdchar, static_cast<DWORD>(count), &wch, 1) != 0)
goto error;
*uchar = wch;