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}"); } }