diff options
author | 2016-04-09 09:10:03 -0500 | |
---|---|---|
committer | 2016-04-09 09:10:03 -0500 | |
commit | cd243bd4aae7f0d0729fc443b31d07596b0fd0fd (patch) | |
tree | cb3cf79d5101cbffddd0b7c00f42415d741df266 | |
parent | cf8c7fb20687115450296ba42869562ea652bf51 (diff) |
(nw)
-rw-r--r-- | src/emu/ui/pluginopt.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/ui/pluginopt.cpp b/src/emu/ui/pluginopt.cpp index d209eed8fcc..9fd02404a0a 100644 --- a/src/emu/ui/pluginopt.cpp +++ b/src/emu/ui/pluginopt.cpp @@ -94,13 +94,13 @@ void ui_menu_plugin_opt::populate() { UINT32 flags = 0; if(item.flags == "off") - flags = 32; + flags = MENU_FLAG_DISABLE; else if(item.flags == "l") - flags = 1; + flags = MENU_FLAG_LEFT_ARROW; else if(item.flags == "r") - flags = 2; + flags = MENU_FLAG_RIGHT_ARROW; else if(item.flags == "lr") - flags = 3; + flags = MENU_FLAG_RIGHT_ARROW | MENU_FLAG_LEFT_ARROW; item_append(item.text.c_str(), item.subtext.c_str(), flags, (void *)i++); } |