diff --git a/src/duckstation-libretro/libretro_host_interface.cpp b/src/duckstation-libretro/libretro_host_interface.cpp index 38e40e446..a0b465354 100644 --- a/src/duckstation-libretro/libretro_host_interface.cpp +++ b/src/duckstation-libretro/libretro_host_interface.cpp @@ -174,20 +174,10 @@ void LibretroHostInterface::GetSystemAVInfo(struct retro_system_av_info* info, b std::memset(info, 0, sizeof(*info)); info->geometry.aspect_ratio = Settings::GetDisplayAspectRatioValue(m_settings.display_aspect_ratio); - - if (!m_system->IsPALRegion()) - { - info->geometry.base_width = 640; - info->geometry.base_height = 480; - } - else - { - info->geometry.base_width = 720; - info->geometry.base_height = 576; - } - - info->geometry.max_width = 1024 * resolution_scale; - info->geometry.max_height = 512 * resolution_scale; + info->geometry.base_width = 320; + info->geometry.base_height = 240; + info->geometry.max_width = GPU::VRAM_WIDTH * resolution_scale; + info->geometry.max_height = GPU::VRAM_HEIGHT * resolution_scale; info->timing.fps = m_system->GetThrottleFrequency(); info->timing.sample_rate = static_cast(AUDIO_SAMPLE_RATE);