From 7f3e01e3b390c45ce62e04c9b54076abe4da54d6 Mon Sep 17 00:00:00 2001 From: pjgat09 Date: Sat, 4 May 2013 02:48:37 +0000 Subject: [PATCH] N64: Use the config value to set the video size --- BizHawk.MultiClient/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index eadf622ecd..de1bbd5081 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -2455,7 +2455,7 @@ namespace BizHawk.MultiClient case "N64": if (INTERIM) { - nextEmulator = new N64(nextComm, game, rom.RomData, 640, 480); + nextEmulator = new N64(nextComm, game, rom.RomData, Global.Config.N64VideoSizeX, Global.Config.N64VideoSizeY); } break; }