Fix MPROP_SHOWPAGE option not working as expected (#726)

Typo from #473.
This commit is contained in:
Vincent Herbet
2019-06-19 22:26:03 +02:00
committed by GitHub

View File

@@ -1043,7 +1043,7 @@ static cell AMX_NATIVE_CALL menu_setprop(AMX *amx, cell *params)
} }
case MPROP_SHOWPAGE: case MPROP_SHOWPAGE:
{ {
pMenu->showPageNumber = (get_amxaddr(amx, params[3]) != 0); pMenu->showPageNumber = *get_amxaddr(amx, params[3]) != 0;
break; break;
} }
case MPROP_SET_NUMBER_COLOR: case MPROP_SET_NUMBER_COLOR: