mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 15:31:39 +00:00
* cd_sdl.c (get_cddev_arg): fix stupid typo in uppercasing.
git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@287 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
201ae03fdb
commit
339fd92605
1 changed files with 1 additions and 1 deletions
|
@ -472,7 +472,7 @@ static const char *get_cddev_arg (const char *arg)
|
|||
else if (*arg >= 'a' && *arg <= 'z')
|
||||
{
|
||||
/* make it uppercase for SDL */
|
||||
drive[0] = *arg | ('a' - 'A');
|
||||
drive[0] = *arg - ('a' - 'A');
|
||||
drive[1] = ':';
|
||||
drive[2] = '\\';
|
||||
drive[3] = '\0';
|
||||
|
|
Loading…
Reference in a new issue