mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
Use | instead of +.
This commit is contained in:
parent
6478b98eea
commit
3566d3157a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue