Replace alphanumeric and operator spelling

Some (all?) versions of MSVC++ doesn't like it without including
<ciso646>, and we don't really want to use the alternate operator
spellings anyway.
This commit is contained in:
Ignacio R. Morelle 2015-09-20 06:09:22 -03:00
parent e39f6376c8
commit 48def4ff0a

View file

@ -277,7 +277,7 @@ int show_message_dialog(lua_State *L, CVideo & video)
options, &chosen_option
);
if (!has_input and options.empty()) {
if (!has_input && options.empty()) {
lua_pushinteger(L, dlg_result);
} else {
lua_pushinteger(L, chosen_option + 1);