Skip to content

Commit

Permalink
Replace alphanumeric and operator spelling
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
irydacea committed Sep 20, 2015
1 parent e39f637 commit 48def4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripting/lua_gui2.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 48def4f

Please sign in to comment.