Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
mahoneyt944 authored Nov 10, 2024
1 parent 6c05609 commit 6d54311
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mame2003/video.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 6d54311

Please sign in to comment.