diff options
author | Matthew Hoops | 2011-03-07 13:12:43 -0500 |
---|---|---|
committer | Matthew Hoops | 2011-03-07 13:12:43 -0500 |
commit | d2f8103a3bc6f719e57a7f06e9350e08def3e90c (patch) | |
tree | 6e2fb0ec0febae04fd30a24358f73929e1c9ceb6 | |
parent | 826197cf76b85a3f0208ca2c410ce7bc92c5bb33 (diff) | |
download | scummvm-rg350-d2f8103a3bc6f719e57a7f06e9350e08def3e90c.tar.gz scummvm-rg350-d2f8103a3bc6f719e57a7f06e9350e08def3e90c.tar.bz2 scummvm-rg350-d2f8103a3bc6f719e57a7f06e9350e08def3e90c.zip |
COMMON: Fix WinResourceID::getID()
-rw-r--r-- | common/winexe.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/winexe.cpp b/common/winexe.cpp index ea96cee4a0..9602e84c88 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 { |