mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 02:30:46 +00:00
src/config.c: fix what is apparently a copy-paste typo in readconfig().
git-svn-id: https://svn.eduke32.com/eduke32@4461 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1c5da19874
commit
5ca99a812e
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ static int32_t readconfig(BFILE *fp, const char *key, char *value, uint32_t len)
|
|||
|
||||
if (Bstrcasecmp(k, key)) continue;
|
||||
|
||||
while (*v == ' ' || *k == '\t') v++;
|
||||
while (*v == ' ' || *v == '\t') v++;
|
||||
eq = v + Bstrlen(v)-1;
|
||||
|
||||
while ((*eq == ' ' || *eq == '\t' || *eq == '\r' || *eq == '\n') && eq>=v) *(eq--) = 0;
|
||||
|
|
Loading…
Reference in a new issue