mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
Remove "state" from "Invalid state parameter" error message
- It's confusing to see this from inside an anonymous function. Actually, maybe it should be reworded altogether?
This commit is contained in:
parent
cb1d9597f2
commit
fb8d8dc775
1 changed files with 1 additions and 1 deletions
|
@ -583,7 +583,7 @@ FxVMFunctionCall *ParseAction(FScanner &sc, FState state, FString statestring, B
|
|||
}
|
||||
return call;
|
||||
}
|
||||
sc.ScriptError("Invalid state parameter %s\n", sc.String);
|
||||
sc.ScriptError("Invalid parameter '%s'\n", sc.String);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue