From 8dace22f97b579697d7fb60aed0a7b45d22604b8 Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Sun, 9 Jun 2013 21:18:09 -0400 Subject: COMMON: Fix custom NE resource type names --- common/winexe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/winexe.cpp') 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 ""; } -- cgit v1.2.3