From e21093d4193b1e9e004fdc166d789c0e276bcf88 Mon Sep 17 00:00:00 2001 From: ALIENJACK Date: Wed, 25 Dec 2024 13:52:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=83=8F=E7=B4=A0=E5=AF=B9=E9=BD=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Assets/Script/AppMain/NesEmulator/VideoProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/NesEmulator/VideoProvider.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/NesEmulator/VideoProvider.cs index 8fcd3a2..431270b 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/NesEmulator/VideoProvider.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/NesEmulator/VideoProvider.cs @@ -91,7 +91,7 @@ namespace AxibugEmuOnline.Client wrapTex_gpu = new Texture2D(PPU.SCREEN_WIDTH, PPU.SCREEN_HEIGHT, TextureFormat.RGBA32, false); wrapTex_gpu.filterMode = FilterMode.Point; wrapTexBufferPointer_gpu = (IntPtr)screenData; - rt_gpu = RenderTexture.GetTemporary(wrapTex_gpu.width, wrapTex_gpu.height, 0); + rt_gpu = RenderTexture.GetTemporary(256, wrapTex_gpu.height, 0); rt_gpu.filterMode = FilterMode.Point; rt_gpu.anisoLevel = 0; rt_gpu.antiAliasing = 1;