diff options
author | Matthew Hoops | 2013-10-27 13:14:38 -0400 |
---|---|---|
committer | Matthew Hoops | 2013-10-27 13:15:17 -0400 |
commit | eef7f9f46bfafd10aa76cd680f7eb14fdf02f42c (patch) | |
tree | c1f1129777913444cfbe4156401768a185141d5d /common | |
parent | 8158ec2167f227a797315a4ad51f2e7a9f02c52d (diff) | |
download | scummvm-rg350-eef7f9f46bfafd10aa76cd680f7eb14fdf02f42c.tar.gz scummvm-rg350-eef7f9f46bfafd10aa76cd680f7eb14fdf02f42c.tar.bz2 scummvm-rg350-eef7f9f46bfafd10aa76cd680f7eb14fdf02f42c.zip |
COMMON: Fix the NE group icon resource type
Diffstat (limited to 'common')
-rw-r--r-- | common/winexe_ne.cpp | 2 | ||||
-rw-r--r-- | common/winexe_ne.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/winexe_ne.cpp b/common/winexe_ne.cpp index c3698d5fce..8ab7e707bb 100644 --- a/common/winexe_ne.cpp +++ b/common/winexe_ne.cpp @@ -187,7 +187,7 @@ uint32 NEResources::getResourceTableOffset() { static const char *s_resTypeNames[] = { "", "cursor", "bitmap", "icon", "menu", "dialog", "string", "font_dir", "font", "accelerator", "rc_data", "msg_table", - "group_cursor", "group_icon", "", "", "version", "dlg_include", + "group_cursor", "", "group_icon", "", "version", "dlg_include", "", "plug_play", "vxd", "ani_cursor", "ani_icon", "html", "manifest" }; diff --git a/common/winexe_ne.h b/common/winexe_ne.h index f00941412f..3f50b5cc54 100644 --- a/common/winexe_ne.h +++ b/common/winexe_ne.h @@ -46,7 +46,7 @@ enum NEResourceType { kNERCData = 0x0A, kNEMessageTable = 0x0B, kNEGroupCursor = 0x0C, - kNEGroupIcon = 0x0D, + kNEGroupIcon = 0x0E, kNEVersion = 0x10, kNEDlgInclude = 0x11, kNEPlugPlay = 0x13, |