mirror of https://github.com/mgba-emu/mgba.git
(libretro) Explicitly set core reported aspect ratio to 3:2
This commit is contained in:
parent
74bbc057bb
commit
eb341bb167
|
@ -99,6 +99,7 @@ void retro_get_system_av_info(struct retro_system_av_info* info) {
|
|||
info->geometry.base_height = VIDEO_VERTICAL_PIXELS;
|
||||
info->geometry.max_width = VIDEO_HORIZONTAL_PIXELS;
|
||||
info->geometry.max_height = VIDEO_VERTICAL_PIXELS;
|
||||
info->geometry.aspect_ratio = 3.0 / 2.0;
|
||||
info->timing.fps = GBA_ARM7TDMI_FREQUENCY / (float) VIDEO_TOTAL_LENGTH;
|
||||
info->timing.sample_rate = 32768;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue