diff options
author | Cameron Cawley | 2019-12-31 19:02:48 +0000 |
---|---|---|
committer | Filippos Karapetis | 2020-01-11 17:34:12 +0200 |
commit | b8e94e1acd207771098bcb5c1a882b13740a850c (patch) | |
tree | 810eb944bb107f2395a60c2d2731e0c444100eb2 /engines | |
parent | 948c555ea616821ed7c2678ad406ed5bea392339 (diff) | |
download | scummvm-rg350-b8e94e1acd207771098bcb5c1a882b13740a850c.tar.gz scummvm-rg350-b8e94e1acd207771098bcb5c1a882b13740a850c.tar.bz2 scummvm-rg350-b8e94e1acd207771098bcb5c1a882b13740a850c.zip |
COMMON: Rename PEResources::getNameList() to getIDList()
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mohawk/cursors.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/cursors.cpp b/engines/mohawk/cursors.cpp index 436b8ce266..be1f8204a6 100644 --- a/engines/mohawk/cursors.cpp +++ b/engines/mohawk/cursors.cpp @@ -248,7 +248,7 @@ PECursorManager::PECursorManager(const Common::String &appName) { return; } - const Common::Array<Common::WinResourceID> cursorGroups = exe->getNameList(Common::kWinGroupCursor); + const Common::Array<Common::WinResourceID> cursorGroups = exe->getIDList(Common::kWinGroupCursor); _cursors.resize(cursorGroups.size()); for (uint i = 0; i < cursorGroups.size(); i++) { |