mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- fixed flipped parameters
This commit is contained in:
parent
26f3bc1857
commit
d5e066b13f
2 changed files with 2 additions and 2 deletions
|
@ -552,7 +552,7 @@ int spawn_d(int j, int pn)
|
|||
|
||||
case SHELL: //From the player
|
||||
case SHOTGUNSHELL:
|
||||
initshell(i, j, sp->picnum == SHELL);
|
||||
initshell(j, i, sp->picnum == SHELL);
|
||||
break;
|
||||
|
||||
case RESPAWN:
|
||||
|
|
|
@ -590,7 +590,7 @@ int spawn_r(int j, int pn)
|
|||
|
||||
case SHELL: //From the player
|
||||
case SHOTGUNSHELL:
|
||||
initshell(i, j, sp->picnum == SHELL);
|
||||
initshell(j, i, sp->picnum == SHELL);
|
||||
break;
|
||||
case RESPAWN:
|
||||
sp->extra = 66-13;
|
||||
|
|
Loading…
Reference in a new issue