OS2_VideoInit: zero the stSDLDisplay and stSDLDisplayMode variables
Fixes testdisplayinfo.exe crashing in SDL2-2.0.13. (How it did work before?..)
parent
54ced668c4
commit
fba32ee21f
|
@ -1555,6 +1555,8 @@ static int OS2_VideoInit(_THIS)
|
||||||
return SDL_SetError( "Video mode query failed." );
|
return SDL_SetError( "Video mode query failed." );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SDL_zero(stSDLDisplay); SDL_zero(stSDLDisplayMode);
|
||||||
|
|
||||||
stSDLDisplayMode.format = _getSDLPixelFormat( stVOInfo.ulBPP,
|
stSDLDisplayMode.format = _getSDLPixelFormat( stVOInfo.ulBPP,
|
||||||
stVOInfo.fccColorEncoding );
|
stVOInfo.fccColorEncoding );
|
||||||
stSDLDisplayMode.w = stVOInfo.ulHorizResolution;
|
stSDLDisplayMode.w = stVOInfo.ulHorizResolution;
|
||||||
|
|
Loading…
Reference in New Issue