mirror of
https://github.com/holub/mame
synced 2025-07-07 10:58:41 +03:00
SDL: fix backwards texture rectangle option [AWJ]
This commit is contained in:
parent
abce9636ac
commit
10e187e5c4
@ -691,7 +691,7 @@ static void extract_video_config(running_machine &machine)
|
||||
// default to working video please
|
||||
video_config.prefer16bpp_tex = 0;
|
||||
video_config.forcepow2texture = options.gl_force_pow2_texture();
|
||||
video_config.allowtexturerect = options.gl_no_texture_rect();
|
||||
video_config.allowtexturerect = !(options.gl_no_texture_rect());
|
||||
video_config.vbo = options.gl_vbo();
|
||||
video_config.pbo = options.gl_pbo();
|
||||
video_config.glsl = options.gl_glsl();
|
||||
|
Loading…
Reference in New Issue
Block a user