SDL_os2video.c: missed replacing a use of libc function

This commit is contained in:
Ozkan Sezer 2021-10-18 14:10:56 +03:00
parent 8e9ea2e362
commit 0a0f685473
1 changed files with 2 additions and 2 deletions

View File

@ -1444,7 +1444,7 @@ static int OS2_VideoInit(_THIS)
return SDL_SetError("Window class not successfully registered.");
}
if (stricmp(_this->name, OS2DRIVER_NAME_VMAN) == 0)
if (SDL_strcasecmp(_this->name, OS2DRIVER_NAME_VMAN) == 0)
pVData->pOutput = &voVMan;
else
pVData->pOutput = &voDive;