From 7d00551f12747dce9f014ff2ecc6f751a2cc9c76 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Wed, 30 Mar 2011 00:22:51 +0000 Subject: [PATCH] Name Table viewer - oops --- BizHawk.MultiClient/NEStools/NESNameTableViewer.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/BizHawk.MultiClient/NEStools/NESNameTableViewer.cs b/BizHawk.MultiClient/NEStools/NESNameTableViewer.cs index 65cbbc8f64..b4f3fba22b 100644 --- a/BizHawk.MultiClient/NEStools/NESNameTableViewer.cs +++ b/BizHawk.MultiClient/NEStools/NESNameTableViewer.cs @@ -6,6 +6,7 @@ using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; +using BizHawk.Emulation.Consoles.Nintendo; namespace BizHawk.MultiClient { @@ -32,7 +33,13 @@ namespace BizHawk.MultiClient if (!(Global.Emulator is NES)) return; if (!this.IsHandleCreated || this.IsDisposed) return; + for (int i = 0; i < 32; i++) + { + for (int j = 0; j < 30; j++) + { + } + } } public void Restart()