mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-29 04:23:44 +00:00
Update main.cpp
This commit is contained in:
parent
4b747e567a
commit
e4119a8618
1 changed files with 5 additions and 1 deletions
|
@ -1449,7 +1449,11 @@ Render2dStuff(void)
|
|||
firstPersonWeapon = true;
|
||||
|
||||
// Draw black border for sniper and rocket launcher
|
||||
if((weaponType == WEAPONTYPE_SNIPERRIFLE || weaponType == WEAPONTYPE_ROCKETLAUNCHER || weaponType == WEAPONTYPE_LASERSCOPE) && firstPersonWeapon){
|
||||
#ifdef FIX_BUGS
|
||||
if((weaponType == WEAPONTYPE_SNIPERRIFLE || weaponType == WEAPONTYPE_LASERSCOPE) && firstPersonWeapon) {
|
||||
#else
|
||||
if((weaponType == WEAPONTYPE_SNIPERRIFLE || weaponType == WEAPONTYPE_ROCKETLAUNCHER || weaponType == WEAPONTYPE_LASERSCOPE) && firstPersonWeapon) {
|
||||
#endif
|
||||
CRGBA black(0, 0, 0, 255);
|
||||
|
||||
// top and bottom strips
|
||||
|
|
Loading…
Reference in a new issue