SW, KenBuild: Replace strupr with Bstrupr

git-svn-id: https://svn.eduke32.com/eduke32@8283 1a8010ca-5511-0410-912e-c29ae57300e0

# Conflicts:
#	source/kenbuild/src/kdmeng.cpp
#	source/sw/src/bldscript.cpp
#	source/sw/src/jbhlp.cpp
This commit is contained in:
hendricks266 2019-11-08 04:23:06 +00:00 committed by Christoph Oelckers
parent fbb75aae0b
commit dc10a8b03d
2 changed files with 2 additions and 2 deletions

View file

@ -424,7 +424,7 @@ void CheatInput(void)
} }
// make sure string is lower cased // make sure string is lower cased
strlwr(CheatInputString); Bstrlwr(CheatInputString);
// check for at least one single match // check for at least one single match
for (i = 0; i < SIZ(ci); i++) for (i = 0; i < SIZ(ci); i++)

View file

@ -99,7 +99,7 @@ SWBOOL LoadScriptFile(const char *filename)
// Convert filebuffer to all upper case // Convert filebuffer to all upper case
//strupr(scriptbuffer); //Bstrupr(scriptbuffer);
script_p = scriptbuffer; script_p = scriptbuffer;
scriptend_p = script_p + size; scriptend_p = script_p + size;