From fd8d4e467889839e365ae15c0339bfbc36163d5a Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 28 Jul 2015 20:46:11 -0400 Subject: [PATCH] Tastudio - branches - cap the framebuffer display size to 320 width --- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index c0db9604ef..5ee64f2215 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -86,9 +86,18 @@ namespace BizHawk.Client.EmuHawk if (Global.Emulator != null) { // Set the screenshot to "1x" resolution of the core - // TODO: cores like n64 and psx are going to still have sizes too big for the control - // Find a smart way to keep them small - ScreenshotControl.Size = new Size(Global.Emulator.VideoProvider().BufferWidth, Global.Emulator.VideoProvider().BufferHeight); + // cores like n64 and psx are going to still have sizes too big for the control, so cap them + int width = Global.Emulator.VideoProvider().BufferWidth; + int height = Global.Emulator.VideoProvider().BufferHeight; + if (width > 320) + { + double ratio = 320.0 / (double)width; + width = 320; + height = (int)((double)(height) * ratio); + } + + + ScreenshotControl.Size = new Size(width, height); } ScreenshotControl.Visible = false;