mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- fixed compilation of SDL backend
src/posix/sdl/sdlglvideo.cpp:200:4: error: use of undeclared identifier 'I_ClosestResolution'
This commit is contained in:
parent
dc2a5b0cc9
commit
5cf3dbfd5b
1 changed files with 2 additions and 1 deletions
|
@ -197,7 +197,8 @@ DFrameBuffer *SDLGLVideo::CreateFrameBuffer (int width, int height, bool bgra, b
|
||||||
oheight = height;
|
oheight = height;
|
||||||
case 2:
|
case 2:
|
||||||
// Try a different resolution. Hopefully that will work.
|
// Try a different resolution. Hopefully that will work.
|
||||||
I_ClosestResolution (&width, &height, 8);
|
void V_ClosestResolution(int *, int *, int);
|
||||||
|
V_ClosestResolution (&width, &height, 8);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 1:
|
case 1:
|
||||||
|
|
Loading…
Reference in a new issue