From fc8302062b94e532ef87807e9f1adb27d21d1623 Mon Sep 17 00:00:00 2001 From: "ALIENJACK\\alien" Date: Tue, 7 Jan 2025 14:40:16 +0800 Subject: [PATCH] =?UTF-8?q?ScreenScaler=E8=8E=B7=E5=BE=97=E5=B9=B3?= =?UTF-8?q?=E5=8F=B0=E5=88=86=E8=BE=A8=E7=8E=87=E7=9A=84switch=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E7=89=87=E6=AE=B5,=E6=9C=AA=E5=AE=9E=E7=8E=B0?= =?UTF-8?q?=E7=9A=84=E5=B9=B3=E5=8F=B0=E6=8A=9B=E5=87=BA=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Assets/Script/AppMain/Manager/AppSettings/ScreenScaler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/AppSettings/ScreenScaler.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/AppSettings/ScreenScaler.cs index 228542ab..41af7649 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/AppSettings/ScreenScaler.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/AppSettings/ScreenScaler.cs @@ -106,7 +106,7 @@ namespace AxibugEmuOnline.Client switch (platform) { case RomPlatformType.Nes: return new Vector2Int(256, 240); - default: return new Vector2Int(256, 240); + default: throw new System.NotImplementedException($"未实现的平台:{platform}"); } }