mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
P_WriteSfx: Work around the weird case sensitivity in internal instances of get_number by always providing an uppercase prefix on conversion
This commit is contained in:
parent
66dd952fdd
commit
e914c19e8f
1 changed files with 1 additions and 1 deletions
|
@ -1283,7 +1283,7 @@ static void P_WriteSfx(INT32 constant, char **target)
|
|||
return;
|
||||
|
||||
P_WriteDuplicateText(
|
||||
va("sfx_%s", S_sfx[constant].name),
|
||||
va("SFX_%s", S_sfx[constant].name),
|
||||
target
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue