mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 21:21:04 +00:00
- fixed typo in SendToCommunicator enhancement.
This commit is contained in:
parent
a55d85c51c
commit
3fadfec77d
1 changed files with 1 additions and 1 deletions
|
@ -2991,7 +2991,7 @@ FUNC(LS_SendToCommunicator)
|
|||
FString msg;
|
||||
msg.Format("TXT_COMM%d", arg2);
|
||||
const char *str = GStrings[msg];
|
||||
if (msg != NULL)
|
||||
if (str != NULL)
|
||||
{
|
||||
Printf (PRINT_CHAT, "%s\n", str);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue