Merge pull request #90 from metallic77/hatari

add Atari SC1224 visible resolution as "cropped"
This commit is contained in:
LibretroAdmin 2023-05-28 14:17:37 +02:00 committed by GitHub
commit 00a46e1ed2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -89,7 +89,7 @@
#cmakedefine ENABLE_DSP_EMU 1
/* Define to 1 to enable WINUAE cpu */
#cmakedefine ENABLE_WINUAE_CPU 1
//#cmakedefine ENABLE_WINUAE_CPU 1
/* Define to 1 to use less memory - at the expense of emulation speed */
#cmakedefine ENABLE_SMALL_MEM 1

View File

@ -343,8 +343,8 @@ static void update_variables(void)
hatari_borders = true;
break;
case HATARI_VIDEO_CR_LO:
retrow = 320;
retroh = 200;
retrow = 366;
retroh = 243;
// Strange, do not work if set to false...
hatari_borders = true;
break;
@ -354,9 +354,9 @@ static void update_variables(void)
hatari_borders = true;
break;
case HATARI_VIDEO_CR_HI:
retrow = 832;
retroh = 548;
hatari_borders = false;
retrow = 732;
retroh = 486;
hatari_borders = true;
break;
}