mirror of
https://github.com/libretro/mame2003-libretro.git
synced 2024-11-26 18:10:32 +00:00
Revert
This commit is contained in:
parent
6c05609dde
commit
6d54311553
@ -48,8 +48,8 @@ enum
|
||||
void mame2003_video_get_geometry(struct retro_game_geometry *geom)
|
||||
{
|
||||
/* Shorter variable names, for readability */
|
||||
unsigned max_w = video_config.width > Machine->drv->screen_width ? video_config.width : Machine->drv->screen_width;
|
||||
unsigned max_h = video_config.height > Machine->drv->screen_height ? video_config.height : Machine->drv->screen_height;
|
||||
unsigned max_w = video_config.width;
|
||||
unsigned max_h = video_config.height;
|
||||
unsigned vis_w = vis_width > 0 ? vis_width : max_w;
|
||||
unsigned vis_h = vis_height > 0 ? vis_height : max_h;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user