fix copy and paste error

This commit is contained in:
cbatson
2015-01-27 09:01:21 -08:00
parent 26a0b6a8f3
commit 2a23e96baa

View File

@@ -215,7 +215,7 @@ WString ColorToWide(int value)
#ifdef __MINGW32__
swprintf(buffer, L"%X", value);
#else
swprintf(buffer, 40, L"%i", value);
swprintf(buffer, 40, L"%X", value);
#endif
return WString(buffer);
}