From d2f8103a3bc6f719e57a7f06e9350e08def3e90c Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Mon, 7 Mar 2011 13:12:43 -0500 Subject: [PATCH] COMMON: Fix WinResourceID::getID() --- common/winexe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/winexe.cpp b/common/winexe.cpp index ea96cee4a0d..9602e84c883 100644 --- a/common/winexe.cpp +++ b/common/winexe.cpp @@ -69,7 +69,7 @@ uint32 WinResourceID::getID() const { if (_idType != kIDTypeNumerical) return 0xffffffff; - return _idType; + return _id; } String WinResourceID::toString() const {