mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-13 07:57:52 +00:00
- fixed: Ceiling_CrushStop checked the wrong argument for the remove parameter.
This commit is contained in:
parent
2d0da4fcfa
commit
046e250f2e
1 changed files with 1 additions and 1 deletions
|
@ -717,7 +717,7 @@ FUNC(LS_Ceiling_CrushStop)
|
||||||
// Ceiling_CrushStop (tag, remove)
|
// Ceiling_CrushStop (tag, remove)
|
||||||
{
|
{
|
||||||
bool remove;
|
bool remove;
|
||||||
switch (arg3)
|
switch (arg1)
|
||||||
{
|
{
|
||||||
case 1:
|
case 1:
|
||||||
remove = false;
|
remove = false;
|
||||||
|
|
Loading…
Reference in a new issue