aboutsummaryrefslogtreecommitdiff
path: root/common/winexe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/winexe.cpp')
-rw-r--r--common/winexe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/winexe.cpp b/common/winexe.cpp
index 7cfc140452..877ab6baa1 100644
--- a/common/winexe.cpp
+++ b/common/winexe.cpp
@@ -73,7 +73,7 @@ String WinResourceID::toString() const {
if (_idType == kIDTypeString)
return _name;
else if (_idType == kIDTypeNumerical)
- return String::format("%08x", _id);
+ return String::format("0x%08x", _id);
return "";
}