Use | instead of +.

This commit is contained in:
MajorCooke 2015-12-15 09:04:52 -06:00 committed by Randy Heit
parent 6478b98eea
commit 3566d3157a
1 changed files with 1 additions and 1 deletions

View File

@ -628,7 +628,7 @@ void DoReadyWeapon(AActor *self)
DoReadyWeaponToSwitch(self); DoReadyWeaponToSwitch(self);
DoReadyWeaponToReload(self); DoReadyWeaponToReload(self);
DoReadyWeaponToZoom(self); DoReadyWeaponToZoom(self);
DoReadyWeaponToUser(self, (WF_USER1OK + WF_USER2OK + WF_USER3OK + WF_USER4OK)); DoReadyWeaponToUser(self, (WF_USER1OK | WF_USER2OK | WF_USER3OK | WF_USER4OK));
} }
enum EWRF_Options enum EWRF_Options