From 79baa45ca6e98cfdddc94ce12e980863e96c5844 Mon Sep 17 00:00:00 2001 From: feos Date: Sun, 3 Dec 2023 11:48:49 +0300 Subject: [PATCH] bounds have proper dimensions now --- src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs b/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs index 485f841de9..729e002697 100644 --- a/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs +++ b/src/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs @@ -364,11 +364,9 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME "return v.refresh_attoseconds " + "end"; public const string GetBoundX = - "local b = manager.machine.video.snapshot_target.current_view.bounds " + - "return b.x1-b.x0"; + "return tostring(manager.machine.video.snapshot_target.current_view.bounds.width)"; public const string GetBoundY = - "local b = manager.machine.video.snapshot_target.current_view.bounds " + - "return b.y1-b.y0"; + "return manager.machine.video.snapshot_target.current_view.bounds.height"; public const string GetROMsInfo = "local final = {} " + "for __, r in pairs(manager.machine.devices[\":\"].roms) do " +