add FDS skeleton. set up your fds bios with pathconfig, then try to load any file with extension ".fds"

This commit is contained in:
goyuken 2012-10-21 15:58:24 +00:00
parent a34337691a
commit 7568ff9437
8 changed files with 365 additions and 216 deletions

View File

@ -268,6 +268,7 @@
<Compile Include="Consoles\Nintendo\NES\BisqAPU.cs" /> <Compile Include="Consoles\Nintendo\NES\BisqAPU.cs" />
<Compile Include="Consoles\Nintendo\NES\Boards\VsUnisys.cs" /> <Compile Include="Consoles\Nintendo\NES\Boards\VsUnisys.cs" />
<Compile Include="Consoles\Nintendo\NES\Core.cs" /> <Compile Include="Consoles\Nintendo\NES\Core.cs" />
<Compile Include="Consoles\Nintendo\NES\FDS\FDS.cs" />
<Compile Include="Consoles\Nintendo\NES\iNES.cs" /> <Compile Include="Consoles\Nintendo\NES\iNES.cs" />
<Compile Include="Consoles\Nintendo\NES\NES.cs" /> <Compile Include="Consoles\Nintendo\NES\NES.cs" />
<Compile Include="Consoles\Nintendo\NES\Palettes.cs" /> <Compile Include="Consoles\Nintendo\NES\Palettes.cs" />

View File

@ -0,0 +1,67 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BizHawk.Emulation.Consoles.Nintendo
{
[NES.INESBoardImplCancel]
public class FDS : NES.NESBoardBase
{
/// <summary>
/// fds bios image; should be 8192 bytes
/// </summary>
public byte[] biosrom;
// as we have [INESBoardImplCancel], this will only be called with an fds disk image
public override bool Configure(NES.EDetectionOrigin origin)
{
if (biosrom == null || biosrom.Length != 8192)
throw new Exception("FDS bios image needed!");
Cart.vram_size = 8;
Cart.wram_size = 32;
Cart.wram_battery = false;
Cart.system = "FDS";
Cart.board_type = "FAMICOM_DISK_SYSTEM";
// set mirroring
return true;
}
public override byte ReadWRAM(int addr)
{
return WRAM[addr & 0x1fff];
}
public override void WriteWRAM(int addr, byte value)
{
WRAM[addr & 0x1fff] = value;
}
public override byte ReadPRG(int addr)
{
if (addr >= 0x6000)
return biosrom[addr & 0x1fff];
else
return WRAM[addr + 0x2000];
}
public override void WritePRG(int addr, byte value)
{
if (addr < 0x6000)
WRAM[addr + 0x2000] = value;
}
public override void WriteEXP(int addr, byte value)
{
}
public override byte ReadEXP(int addr)
{
return 0;
}
}
}

View File

@ -16,7 +16,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
static readonly bool USE_DATABASE = true; static readonly bool USE_DATABASE = true;
public RomStatus RomStatus; public RomStatus RomStatus;
public NES(GameInfo game, byte[] rom) public NES(GameInfo game, byte[] rom, byte[] fdsbios = null)
{ {
CoreOutputComm = new CoreOutputComm(); CoreOutputComm = new CoreOutputComm();
CoreOutputComm.CpuTraceAvailable = true; CoreOutputComm.CpuTraceAvailable = true;
@ -24,7 +24,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
BootGodDB.Initialize(); BootGodDB.Initialize();
SetPalette(Palettes.FCEUX_Standard); SetPalette(Palettes.FCEUX_Standard);
videoProvider = new MyVideoProvider(this); videoProvider = new MyVideoProvider(this);
Init(game, rom); Init(game, rom, fdsbios);
} }
private NES() private NES()
@ -409,7 +409,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
public enum EDetectionOrigin public enum EDetectionOrigin
{ {
None, BootGodDB, GameDB, INES, UNIF None, BootGodDB, GameDB, INES, UNIF, FDS
} }
StringWriter LoadReport; StringWriter LoadReport;
@ -434,7 +434,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
} }
} }
public unsafe void Init(GameInfo gameInfo, byte[] rom) public unsafe void Init(GameInfo gameInfo, byte[] rom, byte[] fdsbios = null)
{ {
LoadReport = new StringWriter(); LoadReport = new StringWriter();
LoadWriteLine("------"); LoadWriteLine("------");
@ -460,6 +460,34 @@ namespace BizHawk.Emulation.Consoles.Nintendo
hash_sha1_several.Add(hash_sha1); hash_sha1_several.Add(hash_sha1);
LoadWriteLine("headerless rom hash: {0}", hash_sha1); LoadWriteLine("headerless rom hash: {0}", hash_sha1);
} }
else if (file.Take(4).SequenceEqual(System.Text.Encoding.ASCII.GetBytes("FDS\x1A")))
{
// there's not much else to do with FDS images other than to feed them to the board
origin = EDetectionOrigin.FDS;
LoadWriteLine("Found FDS header.");
if (fdsbios == null)
throw new Exception("Missing FDS Bios!");
cart = new CartInfo();
var fdsboard = new FDS();
fdsboard.biosrom = fdsbios;
fdsboard.Create(this);
fdsboard.Configure(origin);
board = fdsboard;
//create the vram and wram if necessary
if (cart.wram_size != 0)
board.WRAM = new byte[cart.wram_size * 1024];
if (cart.vram_size != 0)
board.VRAM = new byte[cart.vram_size * 1024];
board.PostConfigure();
HardReset();
SetupMemoryDomains();
return;
}
else else
{ {
fixed (byte* bfile = &file[0]) fixed (byte* bfile = &file[0])

View File

@ -154,6 +154,7 @@ namespace BizHawk.MultiClient
public string PathPCEBios = Path.Combine(".", "PCECDBios.pce"); public string PathPCEBios = Path.Combine(".", "PCECDBios.pce");
public string PathINTVGROM = Path.Combine(".", "grom.bin"); public string PathINTVGROM = Path.Combine(".", "grom.bin");
public string PathINTVEROM = Path.Combine(".", "erom.bin"); public string PathINTVEROM = Path.Combine(".", "erom.bin");
public string PathFDSBios = Path.Combine(".", "disksys.rom");
public string FFMpegPath = "%exe%/dll/ffmpeg.exe"; public string FFMpegPath = "%exe%/dll/ffmpeg.exe";

View File

@ -1468,7 +1468,12 @@ namespace BizHawk.MultiClient
break; break;
case "NES": case "NES":
{ {
NES nes = new NES(game, rom.FileData); string biosPath = PathManager.MakeAbsolutePath(Global.Config.PathFDSBios, "NES");
byte[] bios = null;
if (File.Exists(biosPath))
bios = File.ReadAllBytes(biosPath);
NES nes = new NES(game, rom.FileData, bios);
nes.SoundOn = Global.Config.SoundEnabled; nes.SoundOn = Global.Config.SoundEnabled;
nes.FirstDrawLine = Global.Config.NESTopLine; nes.FirstDrawLine = Global.Config.NESTopLine;
nes.LastDrawLine = Global.Config.NESBottomLine; nes.LastDrawLine = Global.Config.NESBottomLine;
@ -1580,7 +1585,8 @@ namespace BizHawk.MultiClient
if (game.System == "NES") if (game.System == "NES")
{ {
NES nes = Global.Emulator as NES; NES nes = Global.Emulator as NES;
Global.Game.Name = nes.GameName; if (nes.GameName != null)
Global.Game.Name = nes.GameName;
Global.Game.Status = nes.RomStatus; Global.Game.Status = nes.RomStatus;
SetNESSoundChannels(); SetNESSoundChannels();
} }

View File

@ -288,6 +288,9 @@
this.button1 = new System.Windows.Forms.Button(); this.button1 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.NESFDSBiosBox = new System.Windows.Forms.TextBox();
this.NESBrowseFDSBios = new System.Windows.Forms.Button();
this.NESFDSBiosDescription = new System.Windows.Forms.Label();
this.tabControl1.SuspendLayout(); this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout(); this.tabPage1.SuspendLayout();
this.tabPage12.SuspendLayout(); this.tabPage12.SuspendLayout();
@ -328,8 +331,8 @@
// //
// WatchBox // WatchBox
// //
this.WatchBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.WatchBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.WatchBox.Location = new System.Drawing.Point(13, 111); this.WatchBox.Location = new System.Drawing.Point(13, 111);
this.WatchBox.Name = "WatchBox"; this.WatchBox.Name = "WatchBox";
this.WatchBox.Size = new System.Drawing.Size(421, 20); this.WatchBox.Size = new System.Drawing.Size(421, 20);
@ -358,8 +361,8 @@
// //
// MoviesBox // MoviesBox
// //
this.MoviesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.MoviesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.MoviesBox.Location = new System.Drawing.Point(13, 21); this.MoviesBox.Location = new System.Drawing.Point(13, 21);
this.MoviesBox.Name = "MoviesBox"; this.MoviesBox.Name = "MoviesBox";
this.MoviesBox.Size = new System.Drawing.Size(421, 20); this.MoviesBox.Size = new System.Drawing.Size(421, 20);
@ -388,8 +391,8 @@
// //
// LuaBox // LuaBox
// //
this.LuaBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.LuaBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.LuaBox.Location = new System.Drawing.Point(13, 81); this.LuaBox.Location = new System.Drawing.Point(13, 81);
this.LuaBox.Name = "LuaBox"; this.LuaBox.Name = "LuaBox";
this.LuaBox.Size = new System.Drawing.Size(421, 20); this.LuaBox.Size = new System.Drawing.Size(421, 20);
@ -418,8 +421,8 @@
// //
// NESScreenshotsBox // NESScreenshotsBox
// //
this.NESScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.NESScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.NESScreenshotsBox.Location = new System.Drawing.Point(13, 149); this.NESScreenshotsBox.Location = new System.Drawing.Point(13, 149);
this.NESScreenshotsBox.Name = "NESScreenshotsBox"; this.NESScreenshotsBox.Name = "NESScreenshotsBox";
this.NESScreenshotsBox.Size = new System.Drawing.Size(421, 20); this.NESScreenshotsBox.Size = new System.Drawing.Size(421, 20);
@ -448,8 +451,8 @@
// //
// NESROMsBox // NESROMsBox
// //
this.NESROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.NESROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.NESROMsBox.Location = new System.Drawing.Point(13, 59); this.NESROMsBox.Location = new System.Drawing.Point(13, 59);
this.NESROMsBox.Name = "NESROMsBox"; this.NESROMsBox.Name = "NESROMsBox";
this.NESROMsBox.Size = new System.Drawing.Size(421, 20); this.NESROMsBox.Size = new System.Drawing.Size(421, 20);
@ -478,8 +481,8 @@
// //
// NESSaveRAMBox // NESSaveRAMBox
// //
this.NESSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.NESSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.NESSaveRAMBox.Location = new System.Drawing.Point(13, 119); this.NESSaveRAMBox.Location = new System.Drawing.Point(13, 119);
this.NESSaveRAMBox.Name = "NESSaveRAMBox"; this.NESSaveRAMBox.Name = "NESSaveRAMBox";
this.NESSaveRAMBox.Size = new System.Drawing.Size(421, 20); this.NESSaveRAMBox.Size = new System.Drawing.Size(421, 20);
@ -508,8 +511,8 @@
// //
// NESSavestatesBox // NESSavestatesBox
// //
this.NESSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.NESSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.NESSavestatesBox.Location = new System.Drawing.Point(13, 89); this.NESSavestatesBox.Location = new System.Drawing.Point(13, 89);
this.NESSavestatesBox.Name = "NESSavestatesBox"; this.NESSavestatesBox.Name = "NESSavestatesBox";
this.NESSavestatesBox.Size = new System.Drawing.Size(421, 20); this.NESSavestatesBox.Size = new System.Drawing.Size(421, 20);
@ -538,8 +541,8 @@
// //
// Sega8ScreenshotsBox // Sega8ScreenshotsBox
// //
this.Sega8ScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.Sega8ScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.Sega8ScreenshotsBox.Location = new System.Drawing.Point(13, 149); this.Sega8ScreenshotsBox.Location = new System.Drawing.Point(13, 149);
this.Sega8ScreenshotsBox.Name = "Sega8ScreenshotsBox"; this.Sega8ScreenshotsBox.Name = "Sega8ScreenshotsBox";
this.Sega8ScreenshotsBox.Size = new System.Drawing.Size(421, 20); this.Sega8ScreenshotsBox.Size = new System.Drawing.Size(421, 20);
@ -568,8 +571,8 @@
// //
// Sega8ROMsBox // Sega8ROMsBox
// //
this.Sega8ROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.Sega8ROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.Sega8ROMsBox.Location = new System.Drawing.Point(13, 59); this.Sega8ROMsBox.Location = new System.Drawing.Point(13, 59);
this.Sega8ROMsBox.Name = "Sega8ROMsBox"; this.Sega8ROMsBox.Name = "Sega8ROMsBox";
this.Sega8ROMsBox.Size = new System.Drawing.Size(421, 20); this.Sega8ROMsBox.Size = new System.Drawing.Size(421, 20);
@ -598,8 +601,8 @@
// //
// Sega8SaveRAMBox // Sega8SaveRAMBox
// //
this.Sega8SaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.Sega8SaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.Sega8SaveRAMBox.Location = new System.Drawing.Point(13, 119); this.Sega8SaveRAMBox.Location = new System.Drawing.Point(13, 119);
this.Sega8SaveRAMBox.Name = "Sega8SaveRAMBox"; this.Sega8SaveRAMBox.Name = "Sega8SaveRAMBox";
this.Sega8SaveRAMBox.Size = new System.Drawing.Size(421, 20); this.Sega8SaveRAMBox.Size = new System.Drawing.Size(421, 20);
@ -628,8 +631,8 @@
// //
// Sega8SavestatesBox // Sega8SavestatesBox
// //
this.Sega8SavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.Sega8SavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.Sega8SavestatesBox.Location = new System.Drawing.Point(13, 89); this.Sega8SavestatesBox.Location = new System.Drawing.Point(13, 89);
this.Sega8SavestatesBox.Name = "Sega8SavestatesBox"; this.Sega8SavestatesBox.Name = "Sega8SavestatesBox";
this.Sega8SavestatesBox.Size = new System.Drawing.Size(421, 20); this.Sega8SavestatesBox.Size = new System.Drawing.Size(421, 20);
@ -659,8 +662,8 @@
// AVIBox // AVIBox
// //
this.AVIBox.AcceptsReturn = true; this.AVIBox.AcceptsReturn = true;
this.AVIBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.AVIBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.AVIBox.Location = new System.Drawing.Point(13, 141); this.AVIBox.Location = new System.Drawing.Point(13, 141);
this.AVIBox.Name = "AVIBox"; this.AVIBox.Name = "AVIBox";
this.AVIBox.Size = new System.Drawing.Size(421, 20); this.AVIBox.Size = new System.Drawing.Size(421, 20);
@ -689,9 +692,9 @@
// //
// tabControl1 // tabControl1
// //
this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.tabControl1.Controls.Add(this.tabPage1); this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage12); this.tabControl1.Controls.Add(this.tabPage12);
this.tabControl1.Controls.Add(this.tabPage2); this.tabControl1.Controls.Add(this.tabPage2);
@ -714,6 +717,9 @@
// //
// tabPage1 // tabPage1
// //
this.tabPage1.Controls.Add(this.NESFDSBiosDescription);
this.tabPage1.Controls.Add(this.NESBrowseFDSBios);
this.tabPage1.Controls.Add(this.NESFDSBiosBox);
this.tabPage1.Controls.Add(this.NESBaseBox); this.tabPage1.Controls.Add(this.NESBaseBox);
this.tabPage1.Controls.Add(this.NESPaletteDescription); this.tabPage1.Controls.Add(this.NESPaletteDescription);
this.tabPage1.Controls.Add(this.NESBrowsePalette); this.tabPage1.Controls.Add(this.NESBrowsePalette);
@ -745,8 +751,8 @@
// //
// NESBaseBox // NESBaseBox
// //
this.NESBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.NESBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.NESBaseBox.Location = new System.Drawing.Point(13, 21); this.NESBaseBox.Location = new System.Drawing.Point(13, 21);
this.NESBaseBox.Name = "NESBaseBox"; this.NESBaseBox.Name = "NESBaseBox";
this.NESBaseBox.Size = new System.Drawing.Size(421, 20); this.NESBaseBox.Size = new System.Drawing.Size(421, 20);
@ -776,11 +782,11 @@
// NESPaletteBox // NESPaletteBox
// //
this.NESPaletteBox.AcceptsTab = true; this.NESPaletteBox.AcceptsTab = true;
this.NESPaletteBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.NESPaletteBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.NESPaletteBox.Location = new System.Drawing.Point(13, 209); this.NESPaletteBox.Location = new System.Drawing.Point(13, 209);
this.NESPaletteBox.Name = "NESPaletteBox"; this.NESPaletteBox.Name = "NESPaletteBox";
this.NESPaletteBox.Size = new System.Drawing.Size(420, 20); this.NESPaletteBox.Size = new System.Drawing.Size(421, 20);
this.NESPaletteBox.TabIndex = 24; this.NESPaletteBox.TabIndex = 24;
// //
// NESCheatsDescription // NESCheatsDescription
@ -807,8 +813,8 @@
// NESCheatsBox // NESCheatsBox
// //
this.NESCheatsBox.AcceptsTab = true; this.NESCheatsBox.AcceptsTab = true;
this.NESCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.NESCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.NESCheatsBox.Location = new System.Drawing.Point(13, 179); this.NESCheatsBox.Location = new System.Drawing.Point(13, 179);
this.NESCheatsBox.Name = "NESCheatsBox"; this.NESCheatsBox.Name = "NESCheatsBox";
this.NESCheatsBox.Size = new System.Drawing.Size(421, 20); this.NESCheatsBox.Size = new System.Drawing.Size(421, 20);
@ -879,7 +885,7 @@
// //
this.SNESBrowseFirmwares.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.SNESBrowseFirmwares.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.SNESBrowseFirmwares.Image = ((System.Drawing.Image)(resources.GetObject("SNESBrowseFirmwares.Image"))); this.SNESBrowseFirmwares.Image = ((System.Drawing.Image)(resources.GetObject("SNESBrowseFirmwares.Image")));
this.SNESBrowseFirmwares.Location = new System.Drawing.Point(442, 208); this.SNESBrowseFirmwares.Location = new System.Drawing.Point(442, 209);
this.SNESBrowseFirmwares.Name = "SNESBrowseFirmwares"; this.SNESBrowseFirmwares.Name = "SNESBrowseFirmwares";
this.SNESBrowseFirmwares.Size = new System.Drawing.Size(26, 23); this.SNESBrowseFirmwares.Size = new System.Drawing.Size(26, 23);
this.SNESBrowseFirmwares.TabIndex = 93; this.SNESBrowseFirmwares.TabIndex = 93;
@ -888,17 +894,17 @@
// //
// SNESFirmwaresBox // SNESFirmwaresBox
// //
this.SNESFirmwaresBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.SNESFirmwaresBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.SNESFirmwaresBox.Location = new System.Drawing.Point(13, 208); this.SNESFirmwaresBox.Location = new System.Drawing.Point(13, 209);
this.SNESFirmwaresBox.Name = "SNESFirmwaresBox"; this.SNESFirmwaresBox.Name = "SNESFirmwaresBox";
this.SNESFirmwaresBox.Size = new System.Drawing.Size(421, 20); this.SNESFirmwaresBox.Size = new System.Drawing.Size(421, 20);
this.SNESFirmwaresBox.TabIndex = 92; this.SNESFirmwaresBox.TabIndex = 92;
// //
// SNESBaseBox // SNESBaseBox
// //
this.SNESBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.SNESBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.SNESBaseBox.Location = new System.Drawing.Point(13, 21); this.SNESBaseBox.Location = new System.Drawing.Point(13, 21);
this.SNESBaseBox.Name = "SNESBaseBox"; this.SNESBaseBox.Name = "SNESBaseBox";
this.SNESBaseBox.Size = new System.Drawing.Size(421, 20); this.SNESBaseBox.Size = new System.Drawing.Size(421, 20);
@ -928,8 +934,8 @@
// SNESCheatsBox // SNESCheatsBox
// //
this.SNESCheatsBox.AcceptsTab = true; this.SNESCheatsBox.AcceptsTab = true;
this.SNESCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.SNESCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.SNESCheatsBox.Location = new System.Drawing.Point(13, 179); this.SNESCheatsBox.Location = new System.Drawing.Point(13, 179);
this.SNESCheatsBox.Name = "SNESCheatsBox"; this.SNESCheatsBox.Name = "SNESCheatsBox";
this.SNESCheatsBox.Size = new System.Drawing.Size(421, 20); this.SNESCheatsBox.Size = new System.Drawing.Size(421, 20);
@ -958,8 +964,8 @@
// //
// SNESROMsBox // SNESROMsBox
// //
this.SNESROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.SNESROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.SNESROMsBox.Location = new System.Drawing.Point(13, 59); this.SNESROMsBox.Location = new System.Drawing.Point(13, 59);
this.SNESROMsBox.Name = "SNESROMsBox"; this.SNESROMsBox.Name = "SNESROMsBox";
this.SNESROMsBox.Size = new System.Drawing.Size(421, 20); this.SNESROMsBox.Size = new System.Drawing.Size(421, 20);
@ -967,8 +973,8 @@
// //
// SNESScreenshotsBox // SNESScreenshotsBox
// //
this.SNESScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.SNESScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.SNESScreenshotsBox.Location = new System.Drawing.Point(13, 149); this.SNESScreenshotsBox.Location = new System.Drawing.Point(13, 149);
this.SNESScreenshotsBox.Name = "SNESScreenshotsBox"; this.SNESScreenshotsBox.Name = "SNESScreenshotsBox";
this.SNESScreenshotsBox.Size = new System.Drawing.Size(421, 20); this.SNESScreenshotsBox.Size = new System.Drawing.Size(421, 20);
@ -1018,8 +1024,8 @@
// //
// SNESSavestatesBox // SNESSavestatesBox
// //
this.SNESSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.SNESSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.SNESSavestatesBox.Location = new System.Drawing.Point(13, 89); this.SNESSavestatesBox.Location = new System.Drawing.Point(13, 89);
this.SNESSavestatesBox.Name = "SNESSavestatesBox"; this.SNESSavestatesBox.Name = "SNESSavestatesBox";
this.SNESSavestatesBox.Size = new System.Drawing.Size(421, 20); this.SNESSavestatesBox.Size = new System.Drawing.Size(421, 20);
@ -1058,8 +1064,8 @@
// //
// SNESSaveRAMBox // SNESSaveRAMBox
// //
this.SNESSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.SNESSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.SNESSaveRAMBox.Location = new System.Drawing.Point(13, 119); this.SNESSaveRAMBox.Location = new System.Drawing.Point(13, 119);
this.SNESSaveRAMBox.Name = "SNESSaveRAMBox"; this.SNESSaveRAMBox.Name = "SNESSaveRAMBox";
this.SNESSaveRAMBox.Size = new System.Drawing.Size(421, 20); this.SNESSaveRAMBox.Size = new System.Drawing.Size(421, 20);
@ -1106,8 +1112,8 @@
// //
// Sega8BaseBox // Sega8BaseBox
// //
this.Sega8BaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.Sega8BaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.Sega8BaseBox.Location = new System.Drawing.Point(13, 21); this.Sega8BaseBox.Location = new System.Drawing.Point(13, 21);
this.Sega8BaseBox.Name = "Sega8BaseBox"; this.Sega8BaseBox.Name = "Sega8BaseBox";
this.Sega8BaseBox.Size = new System.Drawing.Size(421, 20); this.Sega8BaseBox.Size = new System.Drawing.Size(421, 20);
@ -1136,8 +1142,8 @@
// //
// Sega8CheatsBox // Sega8CheatsBox
// //
this.Sega8CheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.Sega8CheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.Sega8CheatsBox.Location = new System.Drawing.Point(13, 179); this.Sega8CheatsBox.Location = new System.Drawing.Point(13, 179);
this.Sega8CheatsBox.Name = "Sega8CheatsBox"; this.Sega8CheatsBox.Name = "Sega8CheatsBox";
this.Sega8CheatsBox.Size = new System.Drawing.Size(421, 20); this.Sega8CheatsBox.Size = new System.Drawing.Size(421, 20);
@ -1193,8 +1199,8 @@
// //
// SGBaseBox // SGBaseBox
// //
this.SGBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.SGBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.SGBaseBox.Location = new System.Drawing.Point(13, 21); this.SGBaseBox.Location = new System.Drawing.Point(13, 21);
this.SGBaseBox.Name = "SGBaseBox"; this.SGBaseBox.Name = "SGBaseBox";
this.SGBaseBox.Size = new System.Drawing.Size(421, 20); this.SGBaseBox.Size = new System.Drawing.Size(421, 20);
@ -1224,8 +1230,8 @@
// SGCheatsBox // SGCheatsBox
// //
this.SGCheatsBox.AcceptsTab = true; this.SGCheatsBox.AcceptsTab = true;
this.SGCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.SGCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.SGCheatsBox.Location = new System.Drawing.Point(13, 179); this.SGCheatsBox.Location = new System.Drawing.Point(13, 179);
this.SGCheatsBox.Name = "SGCheatsBox"; this.SGCheatsBox.Name = "SGCheatsBox";
this.SGCheatsBox.Size = new System.Drawing.Size(421, 20); this.SGCheatsBox.Size = new System.Drawing.Size(421, 20);
@ -1254,8 +1260,8 @@
// //
// SGROMsBox // SGROMsBox
// //
this.SGROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.SGROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.SGROMsBox.Location = new System.Drawing.Point(13, 59); this.SGROMsBox.Location = new System.Drawing.Point(13, 59);
this.SGROMsBox.Name = "SGROMsBox"; this.SGROMsBox.Name = "SGROMsBox";
this.SGROMsBox.Size = new System.Drawing.Size(421, 20); this.SGROMsBox.Size = new System.Drawing.Size(421, 20);
@ -1263,8 +1269,8 @@
// //
// SGScreenshotsBox // SGScreenshotsBox
// //
this.SGScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.SGScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.SGScreenshotsBox.Location = new System.Drawing.Point(13, 149); this.SGScreenshotsBox.Location = new System.Drawing.Point(13, 149);
this.SGScreenshotsBox.Name = "SGScreenshotsBox"; this.SGScreenshotsBox.Name = "SGScreenshotsBox";
this.SGScreenshotsBox.Size = new System.Drawing.Size(421, 20); this.SGScreenshotsBox.Size = new System.Drawing.Size(421, 20);
@ -1314,8 +1320,8 @@
// //
// SGSavestatesBox // SGSavestatesBox
// //
this.SGSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.SGSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.SGSavestatesBox.Location = new System.Drawing.Point(13, 89); this.SGSavestatesBox.Location = new System.Drawing.Point(13, 89);
this.SGSavestatesBox.Name = "SGSavestatesBox"; this.SGSavestatesBox.Name = "SGSavestatesBox";
this.SGSavestatesBox.Size = new System.Drawing.Size(421, 20); this.SGSavestatesBox.Size = new System.Drawing.Size(421, 20);
@ -1354,8 +1360,8 @@
// //
// SGSaveRAMBox // SGSaveRAMBox
// //
this.SGSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.SGSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.SGSaveRAMBox.Location = new System.Drawing.Point(13, 119); this.SGSaveRAMBox.Location = new System.Drawing.Point(13, 119);
this.SGSaveRAMBox.Name = "SGSaveRAMBox"; this.SGSaveRAMBox.Name = "SGSaveRAMBox";
this.SGSaveRAMBox.Size = new System.Drawing.Size(421, 20); this.SGSaveRAMBox.Size = new System.Drawing.Size(421, 20);
@ -1401,8 +1407,8 @@
// //
// GGBaseBox // GGBaseBox
// //
this.GGBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GGBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GGBaseBox.Location = new System.Drawing.Point(13, 21); this.GGBaseBox.Location = new System.Drawing.Point(13, 21);
this.GGBaseBox.Name = "GGBaseBox"; this.GGBaseBox.Name = "GGBaseBox";
this.GGBaseBox.Size = new System.Drawing.Size(421, 20); this.GGBaseBox.Size = new System.Drawing.Size(421, 20);
@ -1431,8 +1437,8 @@
// //
// GGCheatsBox // GGCheatsBox
// //
this.GGCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GGCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GGCheatsBox.Location = new System.Drawing.Point(13, 179); this.GGCheatsBox.Location = new System.Drawing.Point(13, 179);
this.GGCheatsBox.Name = "GGCheatsBox"; this.GGCheatsBox.Name = "GGCheatsBox";
this.GGCheatsBox.Size = new System.Drawing.Size(421, 20); this.GGCheatsBox.Size = new System.Drawing.Size(421, 20);
@ -1440,8 +1446,8 @@
// //
// GGScreenshotsBox // GGScreenshotsBox
// //
this.GGScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GGScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GGScreenshotsBox.Location = new System.Drawing.Point(13, 149); this.GGScreenshotsBox.Location = new System.Drawing.Point(13, 149);
this.GGScreenshotsBox.Name = "GGScreenshotsBox"; this.GGScreenshotsBox.Name = "GGScreenshotsBox";
this.GGScreenshotsBox.Size = new System.Drawing.Size(421, 20); this.GGScreenshotsBox.Size = new System.Drawing.Size(421, 20);
@ -1491,8 +1497,8 @@
// //
// GGROMBox // GGROMBox
// //
this.GGROMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GGROMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GGROMBox.Location = new System.Drawing.Point(13, 59); this.GGROMBox.Location = new System.Drawing.Point(13, 59);
this.GGROMBox.Name = "GGROMBox"; this.GGROMBox.Name = "GGROMBox";
this.GGROMBox.Size = new System.Drawing.Size(421, 20); this.GGROMBox.Size = new System.Drawing.Size(421, 20);
@ -1531,8 +1537,8 @@
// //
// GGSavestatesBox // GGSavestatesBox
// //
this.GGSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GGSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GGSavestatesBox.Location = new System.Drawing.Point(13, 89); this.GGSavestatesBox.Location = new System.Drawing.Point(13, 89);
this.GGSavestatesBox.Name = "GGSavestatesBox"; this.GGSavestatesBox.Name = "GGSavestatesBox";
this.GGSavestatesBox.Size = new System.Drawing.Size(421, 20); this.GGSavestatesBox.Size = new System.Drawing.Size(421, 20);
@ -1572,8 +1578,8 @@
// //
// GGSaveRAMBox // GGSaveRAMBox
// //
this.GGSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GGSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GGSaveRAMBox.Location = new System.Drawing.Point(13, 119); this.GGSaveRAMBox.Location = new System.Drawing.Point(13, 119);
this.GGSaveRAMBox.Name = "GGSaveRAMBox"; this.GGSaveRAMBox.Name = "GGSaveRAMBox";
this.GGSaveRAMBox.Size = new System.Drawing.Size(421, 20); this.GGSaveRAMBox.Size = new System.Drawing.Size(421, 20);
@ -1608,8 +1614,8 @@
// //
// GenesisBaseBox // GenesisBaseBox
// //
this.GenesisBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GenesisBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GenesisBaseBox.Location = new System.Drawing.Point(13, 21); this.GenesisBaseBox.Location = new System.Drawing.Point(13, 21);
this.GenesisBaseBox.Name = "GenesisBaseBox"; this.GenesisBaseBox.Name = "GenesisBaseBox";
this.GenesisBaseBox.Size = new System.Drawing.Size(421, 20); this.GenesisBaseBox.Size = new System.Drawing.Size(421, 20);
@ -1638,8 +1644,8 @@
// //
// GenesisCheatsBox // GenesisCheatsBox
// //
this.GenesisCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GenesisCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GenesisCheatsBox.Location = new System.Drawing.Point(13, 179); this.GenesisCheatsBox.Location = new System.Drawing.Point(13, 179);
this.GenesisCheatsBox.Name = "GenesisCheatsBox"; this.GenesisCheatsBox.Name = "GenesisCheatsBox";
this.GenesisCheatsBox.Size = new System.Drawing.Size(421, 20); this.GenesisCheatsBox.Size = new System.Drawing.Size(421, 20);
@ -1647,8 +1653,8 @@
// //
// GenesisScreenshotsBox // GenesisScreenshotsBox
// //
this.GenesisScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GenesisScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GenesisScreenshotsBox.Location = new System.Drawing.Point(13, 149); this.GenesisScreenshotsBox.Location = new System.Drawing.Point(13, 149);
this.GenesisScreenshotsBox.Name = "GenesisScreenshotsBox"; this.GenesisScreenshotsBox.Name = "GenesisScreenshotsBox";
this.GenesisScreenshotsBox.Size = new System.Drawing.Size(421, 20); this.GenesisScreenshotsBox.Size = new System.Drawing.Size(421, 20);
@ -1698,8 +1704,8 @@
// //
// GenesisSavestatesBox // GenesisSavestatesBox
// //
this.GenesisSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GenesisSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GenesisSavestatesBox.Location = new System.Drawing.Point(13, 89); this.GenesisSavestatesBox.Location = new System.Drawing.Point(13, 89);
this.GenesisSavestatesBox.Name = "GenesisSavestatesBox"; this.GenesisSavestatesBox.Name = "GenesisSavestatesBox";
this.GenesisSavestatesBox.Size = new System.Drawing.Size(421, 20); this.GenesisSavestatesBox.Size = new System.Drawing.Size(421, 20);
@ -1717,8 +1723,8 @@
// //
// GenesisSaveRAMBox // GenesisSaveRAMBox
// //
this.GenesisSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GenesisSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GenesisSaveRAMBox.Location = new System.Drawing.Point(13, 119); this.GenesisSaveRAMBox.Location = new System.Drawing.Point(13, 119);
this.GenesisSaveRAMBox.Name = "GenesisSaveRAMBox"; this.GenesisSaveRAMBox.Name = "GenesisSaveRAMBox";
this.GenesisSaveRAMBox.Size = new System.Drawing.Size(421, 20); this.GenesisSaveRAMBox.Size = new System.Drawing.Size(421, 20);
@ -1779,8 +1785,8 @@
// //
// GenesisROMsBox // GenesisROMsBox
// //
this.GenesisROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GenesisROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GenesisROMsBox.Location = new System.Drawing.Point(13, 59); this.GenesisROMsBox.Location = new System.Drawing.Point(13, 59);
this.GenesisROMsBox.Name = "GenesisROMsBox"; this.GenesisROMsBox.Name = "GenesisROMsBox";
this.GenesisROMsBox.Size = new System.Drawing.Size(421, 20); this.GenesisROMsBox.Size = new System.Drawing.Size(421, 20);
@ -1818,8 +1824,8 @@
// //
// PCEBaseBox // PCEBaseBox
// //
this.PCEBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.PCEBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.PCEBaseBox.Location = new System.Drawing.Point(13, 21); this.PCEBaseBox.Location = new System.Drawing.Point(13, 21);
this.PCEBaseBox.Name = "PCEBaseBox"; this.PCEBaseBox.Name = "PCEBaseBox";
this.PCEBaseBox.Size = new System.Drawing.Size(421, 20); this.PCEBaseBox.Size = new System.Drawing.Size(421, 20);
@ -1848,8 +1854,8 @@
// //
// PCEBiosBox // PCEBiosBox
// //
this.PCEBiosBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.PCEBiosBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.PCEBiosBox.Location = new System.Drawing.Point(13, 209); this.PCEBiosBox.Location = new System.Drawing.Point(13, 209);
this.PCEBiosBox.Name = "PCEBiosBox"; this.PCEBiosBox.Name = "PCEBiosBox";
this.PCEBiosBox.Size = new System.Drawing.Size(421, 20); this.PCEBiosBox.Size = new System.Drawing.Size(421, 20);
@ -1878,8 +1884,8 @@
// //
// PCECheatsBox // PCECheatsBox
// //
this.PCECheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.PCECheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.PCECheatsBox.Location = new System.Drawing.Point(13, 179); this.PCECheatsBox.Location = new System.Drawing.Point(13, 179);
this.PCECheatsBox.Name = "PCECheatsBox"; this.PCECheatsBox.Name = "PCECheatsBox";
this.PCECheatsBox.Size = new System.Drawing.Size(421, 20); this.PCECheatsBox.Size = new System.Drawing.Size(421, 20);
@ -1888,8 +1894,8 @@
// PCEScreenshotsBox // PCEScreenshotsBox
// //
this.PCEScreenshotsBox.AcceptsReturn = true; this.PCEScreenshotsBox.AcceptsReturn = true;
this.PCEScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.PCEScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.PCEScreenshotsBox.Location = new System.Drawing.Point(13, 149); this.PCEScreenshotsBox.Location = new System.Drawing.Point(13, 149);
this.PCEScreenshotsBox.Name = "PCEScreenshotsBox"; this.PCEScreenshotsBox.Name = "PCEScreenshotsBox";
this.PCEScreenshotsBox.Size = new System.Drawing.Size(421, 20); this.PCEScreenshotsBox.Size = new System.Drawing.Size(421, 20);
@ -1940,8 +1946,8 @@
// PCEROMsBox // PCEROMsBox
// //
this.PCEROMsBox.AcceptsReturn = true; this.PCEROMsBox.AcceptsReturn = true;
this.PCEROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.PCEROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.PCEROMsBox.Location = new System.Drawing.Point(13, 59); this.PCEROMsBox.Location = new System.Drawing.Point(13, 59);
this.PCEROMsBox.Name = "PCEROMsBox"; this.PCEROMsBox.Name = "PCEROMsBox";
this.PCEROMsBox.Size = new System.Drawing.Size(421, 20); this.PCEROMsBox.Size = new System.Drawing.Size(421, 20);
@ -1981,8 +1987,8 @@
// PCESavestatesBox // PCESavestatesBox
// //
this.PCESavestatesBox.AcceptsTab = true; this.PCESavestatesBox.AcceptsTab = true;
this.PCESavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.PCESavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.PCESavestatesBox.Location = new System.Drawing.Point(13, 89); this.PCESavestatesBox.Location = new System.Drawing.Point(13, 89);
this.PCESavestatesBox.Name = "PCESavestatesBox"; this.PCESavestatesBox.Name = "PCESavestatesBox";
this.PCESavestatesBox.Size = new System.Drawing.Size(421, 20); this.PCESavestatesBox.Size = new System.Drawing.Size(421, 20);
@ -2022,8 +2028,8 @@
// //
// PCESaveRAMBox // PCESaveRAMBox
// //
this.PCESaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.PCESaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.PCESaveRAMBox.Location = new System.Drawing.Point(13, 119); this.PCESaveRAMBox.Location = new System.Drawing.Point(13, 119);
this.PCESaveRAMBox.Name = "PCESaveRAMBox"; this.PCESaveRAMBox.Name = "PCESaveRAMBox";
this.PCESaveRAMBox.Size = new System.Drawing.Size(421, 20); this.PCESaveRAMBox.Size = new System.Drawing.Size(421, 20);
@ -2061,8 +2067,8 @@
// //
// GBBaseBox // GBBaseBox
// //
this.GBBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GBBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GBBaseBox.Location = new System.Drawing.Point(13, 21); this.GBBaseBox.Location = new System.Drawing.Point(13, 21);
this.GBBaseBox.Name = "GBBaseBox"; this.GBBaseBox.Name = "GBBaseBox";
this.GBBaseBox.Size = new System.Drawing.Size(421, 20); this.GBBaseBox.Size = new System.Drawing.Size(421, 20);
@ -2070,8 +2076,8 @@
// //
// GBPalettesBox // GBPalettesBox
// //
this.GBPalettesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GBPalettesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GBPalettesBox.Location = new System.Drawing.Point(12, 209); this.GBPalettesBox.Location = new System.Drawing.Point(12, 209);
this.GBPalettesBox.Name = "GBPalettesBox"; this.GBPalettesBox.Name = "GBPalettesBox";
this.GBPalettesBox.Size = new System.Drawing.Size(421, 20); this.GBPalettesBox.Size = new System.Drawing.Size(421, 20);
@ -2121,8 +2127,8 @@
// //
// GBCheatsBox // GBCheatsBox
// //
this.GBCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GBCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GBCheatsBox.Location = new System.Drawing.Point(13, 179); this.GBCheatsBox.Location = new System.Drawing.Point(13, 179);
this.GBCheatsBox.Name = "GBCheatsBox"; this.GBCheatsBox.Name = "GBCheatsBox";
this.GBCheatsBox.Size = new System.Drawing.Size(421, 20); this.GBCheatsBox.Size = new System.Drawing.Size(421, 20);
@ -2130,8 +2136,8 @@
// //
// GBScreenshotsBox // GBScreenshotsBox
// //
this.GBScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GBScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GBScreenshotsBox.Location = new System.Drawing.Point(13, 149); this.GBScreenshotsBox.Location = new System.Drawing.Point(13, 149);
this.GBScreenshotsBox.Name = "GBScreenshotsBox"; this.GBScreenshotsBox.Name = "GBScreenshotsBox";
this.GBScreenshotsBox.Size = new System.Drawing.Size(421, 20); this.GBScreenshotsBox.Size = new System.Drawing.Size(421, 20);
@ -2181,8 +2187,8 @@
// //
// GBROMsBox // GBROMsBox
// //
this.GBROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GBROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GBROMsBox.Location = new System.Drawing.Point(13, 59); this.GBROMsBox.Location = new System.Drawing.Point(13, 59);
this.GBROMsBox.Name = "GBROMsBox"; this.GBROMsBox.Name = "GBROMsBox";
this.GBROMsBox.Size = new System.Drawing.Size(421, 20); this.GBROMsBox.Size = new System.Drawing.Size(421, 20);
@ -2221,8 +2227,8 @@
// //
// GBSavestatesBox // GBSavestatesBox
// //
this.GBSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GBSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GBSavestatesBox.Location = new System.Drawing.Point(13, 89); this.GBSavestatesBox.Location = new System.Drawing.Point(13, 89);
this.GBSavestatesBox.Name = "GBSavestatesBox"; this.GBSavestatesBox.Name = "GBSavestatesBox";
this.GBSavestatesBox.Size = new System.Drawing.Size(421, 20); this.GBSavestatesBox.Size = new System.Drawing.Size(421, 20);
@ -2262,8 +2268,8 @@
// //
// GBSaveRAMBox // GBSaveRAMBox
// //
this.GBSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.GBSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.GBSaveRAMBox.Location = new System.Drawing.Point(13, 119); this.GBSaveRAMBox.Location = new System.Drawing.Point(13, 119);
this.GBSaveRAMBox.Name = "GBSaveRAMBox"; this.GBSaveRAMBox.Name = "GBSaveRAMBox";
this.GBSaveRAMBox.Size = new System.Drawing.Size(421, 20); this.GBSaveRAMBox.Size = new System.Drawing.Size(421, 20);
@ -2298,8 +2304,8 @@
// //
// TI83BaseBox // TI83BaseBox
// //
this.TI83BaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.TI83BaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.TI83BaseBox.Location = new System.Drawing.Point(13, 21); this.TI83BaseBox.Location = new System.Drawing.Point(13, 21);
this.TI83BaseBox.Name = "TI83BaseBox"; this.TI83BaseBox.Name = "TI83BaseBox";
this.TI83BaseBox.Size = new System.Drawing.Size(421, 20); this.TI83BaseBox.Size = new System.Drawing.Size(421, 20);
@ -2328,8 +2334,8 @@
// //
// TI83CheatsBox // TI83CheatsBox
// //
this.TI83CheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.TI83CheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.TI83CheatsBox.Location = new System.Drawing.Point(13, 179); this.TI83CheatsBox.Location = new System.Drawing.Point(13, 179);
this.TI83CheatsBox.Name = "TI83CheatsBox"; this.TI83CheatsBox.Name = "TI83CheatsBox";
this.TI83CheatsBox.Size = new System.Drawing.Size(421, 20); this.TI83CheatsBox.Size = new System.Drawing.Size(421, 20);
@ -2337,8 +2343,8 @@
// //
// TI83ScreenshotsBox // TI83ScreenshotsBox
// //
this.TI83ScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.TI83ScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.TI83ScreenshotsBox.Location = new System.Drawing.Point(13, 149); this.TI83ScreenshotsBox.Location = new System.Drawing.Point(13, 149);
this.TI83ScreenshotsBox.Name = "TI83ScreenshotsBox"; this.TI83ScreenshotsBox.Name = "TI83ScreenshotsBox";
this.TI83ScreenshotsBox.Size = new System.Drawing.Size(421, 20); this.TI83ScreenshotsBox.Size = new System.Drawing.Size(421, 20);
@ -2389,8 +2395,8 @@
// TI83ROMsBox // TI83ROMsBox
// //
this.TI83ROMsBox.AcceptsTab = true; this.TI83ROMsBox.AcceptsTab = true;
this.TI83ROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.TI83ROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.TI83ROMsBox.Location = new System.Drawing.Point(13, 59); this.TI83ROMsBox.Location = new System.Drawing.Point(13, 59);
this.TI83ROMsBox.Name = "TI83ROMsBox"; this.TI83ROMsBox.Name = "TI83ROMsBox";
this.TI83ROMsBox.Size = new System.Drawing.Size(421, 20); this.TI83ROMsBox.Size = new System.Drawing.Size(421, 20);
@ -2429,8 +2435,8 @@
// //
// TI83SavestatesBox // TI83SavestatesBox
// //
this.TI83SavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.TI83SavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.TI83SavestatesBox.Location = new System.Drawing.Point(13, 89); this.TI83SavestatesBox.Location = new System.Drawing.Point(13, 89);
this.TI83SavestatesBox.Name = "TI83SavestatesBox"; this.TI83SavestatesBox.Name = "TI83SavestatesBox";
this.TI83SavestatesBox.Size = new System.Drawing.Size(421, 20); this.TI83SavestatesBox.Size = new System.Drawing.Size(421, 20);
@ -2471,8 +2477,8 @@
// TI83SaveRAMBox // TI83SaveRAMBox
// //
this.TI83SaveRAMBox.AcceptsTab = true; this.TI83SaveRAMBox.AcceptsTab = true;
this.TI83SaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.TI83SaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.TI83SaveRAMBox.Location = new System.Drawing.Point(13, 119); this.TI83SaveRAMBox.Location = new System.Drawing.Point(13, 119);
this.TI83SaveRAMBox.Name = "TI83SaveRAMBox"; this.TI83SaveRAMBox.Name = "TI83SaveRAMBox";
this.TI83SaveRAMBox.Size = new System.Drawing.Size(421, 20); this.TI83SaveRAMBox.Size = new System.Drawing.Size(421, 20);
@ -2507,8 +2513,8 @@
// //
// AtariBaseBox // AtariBaseBox
// //
this.AtariBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.AtariBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.AtariBaseBox.Location = new System.Drawing.Point(13, 21); this.AtariBaseBox.Location = new System.Drawing.Point(13, 21);
this.AtariBaseBox.Name = "AtariBaseBox"; this.AtariBaseBox.Name = "AtariBaseBox";
this.AtariBaseBox.Size = new System.Drawing.Size(421, 20); this.AtariBaseBox.Size = new System.Drawing.Size(421, 20);
@ -2538,8 +2544,8 @@
// AtariCheatsBox // AtariCheatsBox
// //
this.AtariCheatsBox.AcceptsTab = true; this.AtariCheatsBox.AcceptsTab = true;
this.AtariCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.AtariCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.AtariCheatsBox.Location = new System.Drawing.Point(13, 179); this.AtariCheatsBox.Location = new System.Drawing.Point(13, 179);
this.AtariCheatsBox.Name = "AtariCheatsBox"; this.AtariCheatsBox.Name = "AtariCheatsBox";
this.AtariCheatsBox.Size = new System.Drawing.Size(421, 20); this.AtariCheatsBox.Size = new System.Drawing.Size(421, 20);
@ -2568,8 +2574,8 @@
// //
// AtariROMsBox // AtariROMsBox
// //
this.AtariROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.AtariROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.AtariROMsBox.Location = new System.Drawing.Point(13, 59); this.AtariROMsBox.Location = new System.Drawing.Point(13, 59);
this.AtariROMsBox.Name = "AtariROMsBox"; this.AtariROMsBox.Name = "AtariROMsBox";
this.AtariROMsBox.Size = new System.Drawing.Size(421, 20); this.AtariROMsBox.Size = new System.Drawing.Size(421, 20);
@ -2577,8 +2583,8 @@
// //
// AtariScreenshotsBox // AtariScreenshotsBox
// //
this.AtariScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.AtariScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.AtariScreenshotsBox.Location = new System.Drawing.Point(13, 149); this.AtariScreenshotsBox.Location = new System.Drawing.Point(13, 149);
this.AtariScreenshotsBox.Name = "AtariScreenshotsBox"; this.AtariScreenshotsBox.Name = "AtariScreenshotsBox";
this.AtariScreenshotsBox.Size = new System.Drawing.Size(421, 20); this.AtariScreenshotsBox.Size = new System.Drawing.Size(421, 20);
@ -2628,8 +2634,8 @@
// //
// AtariSavestatesBox // AtariSavestatesBox
// //
this.AtariSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.AtariSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.AtariSavestatesBox.Location = new System.Drawing.Point(13, 89); this.AtariSavestatesBox.Location = new System.Drawing.Point(13, 89);
this.AtariSavestatesBox.Name = "AtariSavestatesBox"; this.AtariSavestatesBox.Name = "AtariSavestatesBox";
this.AtariSavestatesBox.Size = new System.Drawing.Size(421, 20); this.AtariSavestatesBox.Size = new System.Drawing.Size(421, 20);
@ -2668,8 +2674,8 @@
// //
// AtariSaveRAMBox // AtariSaveRAMBox
// //
this.AtariSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.AtariSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.AtariSaveRAMBox.Location = new System.Drawing.Point(13, 119); this.AtariSaveRAMBox.Location = new System.Drawing.Point(13, 119);
this.AtariSaveRAMBox.Name = "AtariSaveRAMBox"; this.AtariSaveRAMBox.Name = "AtariSaveRAMBox";
this.AtariSaveRAMBox.Size = new System.Drawing.Size(421, 20); this.AtariSaveRAMBox.Size = new System.Drawing.Size(421, 20);
@ -2722,8 +2728,8 @@
// //
// INTVBaseBox // INTVBaseBox
// //
this.INTVBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.INTVBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.INTVBaseBox.Location = new System.Drawing.Point(13, 21); this.INTVBaseBox.Location = new System.Drawing.Point(13, 21);
this.INTVBaseBox.Name = "INTVBaseBox"; this.INTVBaseBox.Name = "INTVBaseBox";
this.INTVBaseBox.Size = new System.Drawing.Size(421, 20); this.INTVBaseBox.Size = new System.Drawing.Size(421, 20);
@ -2752,8 +2758,8 @@
// //
// INTVGROMBox // INTVGROMBox
// //
this.INTVGROMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.INTVGROMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.INTVGROMBox.Location = new System.Drawing.Point(13, 239); this.INTVGROMBox.Location = new System.Drawing.Point(13, 239);
this.INTVGROMBox.Name = "INTVGROMBox"; this.INTVGROMBox.Name = "INTVGROMBox";
this.INTVGROMBox.Size = new System.Drawing.Size(421, 20); this.INTVGROMBox.Size = new System.Drawing.Size(421, 20);
@ -2782,8 +2788,8 @@
// //
// INTVEROMBox // INTVEROMBox
// //
this.INTVEROMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.INTVEROMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.INTVEROMBox.Location = new System.Drawing.Point(13, 209); this.INTVEROMBox.Location = new System.Drawing.Point(13, 209);
this.INTVEROMBox.Name = "INTVEROMBox"; this.INTVEROMBox.Name = "INTVEROMBox";
this.INTVEROMBox.Size = new System.Drawing.Size(421, 20); this.INTVEROMBox.Size = new System.Drawing.Size(421, 20);
@ -2812,8 +2818,8 @@
// //
// INTVCheatsBox // INTVCheatsBox
// //
this.INTVCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.INTVCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.INTVCheatsBox.Location = new System.Drawing.Point(13, 179); this.INTVCheatsBox.Location = new System.Drawing.Point(13, 179);
this.INTVCheatsBox.Name = "INTVCheatsBox"; this.INTVCheatsBox.Name = "INTVCheatsBox";
this.INTVCheatsBox.Size = new System.Drawing.Size(421, 20); this.INTVCheatsBox.Size = new System.Drawing.Size(421, 20);
@ -2822,8 +2828,8 @@
// INTVScreenshotsBox // INTVScreenshotsBox
// //
this.INTVScreenshotsBox.AcceptsReturn = true; this.INTVScreenshotsBox.AcceptsReturn = true;
this.INTVScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.INTVScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.INTVScreenshotsBox.Location = new System.Drawing.Point(13, 149); this.INTVScreenshotsBox.Location = new System.Drawing.Point(13, 149);
this.INTVScreenshotsBox.Name = "INTVScreenshotsBox"; this.INTVScreenshotsBox.Name = "INTVScreenshotsBox";
this.INTVScreenshotsBox.Size = new System.Drawing.Size(421, 20); this.INTVScreenshotsBox.Size = new System.Drawing.Size(421, 20);
@ -2874,8 +2880,8 @@
// INTVRomsBox // INTVRomsBox
// //
this.INTVRomsBox.AcceptsReturn = true; this.INTVRomsBox.AcceptsReturn = true;
this.INTVRomsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.INTVRomsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.INTVRomsBox.Location = new System.Drawing.Point(13, 59); this.INTVRomsBox.Location = new System.Drawing.Point(13, 59);
this.INTVRomsBox.Name = "INTVRomsBox"; this.INTVRomsBox.Name = "INTVRomsBox";
this.INTVRomsBox.Size = new System.Drawing.Size(421, 20); this.INTVRomsBox.Size = new System.Drawing.Size(421, 20);
@ -2915,8 +2921,8 @@
// INTVSavestatesBox // INTVSavestatesBox
// //
this.INTVSavestatesBox.AcceptsTab = true; this.INTVSavestatesBox.AcceptsTab = true;
this.INTVSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.INTVSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.INTVSavestatesBox.Location = new System.Drawing.Point(13, 89); this.INTVSavestatesBox.Location = new System.Drawing.Point(13, 89);
this.INTVSavestatesBox.Name = "INTVSavestatesBox"; this.INTVSavestatesBox.Name = "INTVSavestatesBox";
this.INTVSavestatesBox.Size = new System.Drawing.Size(421, 20); this.INTVSavestatesBox.Size = new System.Drawing.Size(421, 20);
@ -2956,8 +2962,8 @@
// //
// INTVSaveRAMBox // INTVSaveRAMBox
// //
this.INTVSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.INTVSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.INTVSaveRAMBox.Location = new System.Drawing.Point(13, 119); this.INTVSaveRAMBox.Location = new System.Drawing.Point(13, 119);
this.INTVSaveRAMBox.Name = "INTVSaveRAMBox"; this.INTVSaveRAMBox.Name = "INTVSaveRAMBox";
this.INTVSaveRAMBox.Size = new System.Drawing.Size(421, 20); this.INTVSaveRAMBox.Size = new System.Drawing.Size(421, 20);
@ -3014,8 +3020,8 @@
// LogBox // LogBox
// //
this.LogBox.AcceptsReturn = true; this.LogBox.AcceptsReturn = true;
this.LogBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.LogBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.LogBox.Location = new System.Drawing.Point(13, 171); this.LogBox.Location = new System.Drawing.Point(13, 171);
this.LogBox.Name = "LogBox"; this.LogBox.Name = "LogBox";
this.LogBox.Size = new System.Drawing.Size(421, 20); this.LogBox.Size = new System.Drawing.Size(421, 20);
@ -3023,8 +3029,8 @@
// //
// MovieBackupsBox // MovieBackupsBox
// //
this.MovieBackupsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.MovieBackupsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.MovieBackupsBox.Location = new System.Drawing.Point(13, 51); this.MovieBackupsBox.Location = new System.Drawing.Point(13, 51);
this.MovieBackupsBox.Name = "MovieBackupsBox"; this.MovieBackupsBox.Name = "MovieBackupsBox";
this.MovieBackupsBox.Size = new System.Drawing.Size(421, 20); this.MovieBackupsBox.Size = new System.Drawing.Size(421, 20);
@ -3053,8 +3059,8 @@
// //
// BasePathBox // BasePathBox
// //
this.BasePathBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.BasePathBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.BasePathBox.Location = new System.Drawing.Point(29, 27); this.BasePathBox.Location = new System.Drawing.Point(29, 27);
this.BasePathBox.Name = "BasePathBox"; this.BasePathBox.Name = "BasePathBox";
this.BasePathBox.Size = new System.Drawing.Size(456, 20); this.BasePathBox.Size = new System.Drawing.Size(456, 20);
@ -3123,6 +3129,36 @@
this.label1.TabIndex = 204; this.label1.TabIndex = 204;
this.label1.Text = "Special Commands"; this.label1.Text = "Special Commands";
// //
// NESFDSBiosBox
//
this.NESFDSBiosBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.NESFDSBiosBox.Location = new System.Drawing.Point(13, 239);
this.NESFDSBiosBox.Name = "NESFDSBiosBox";
this.NESFDSBiosBox.Size = new System.Drawing.Size(421, 20);
this.NESFDSBiosBox.TabIndex = 27;
//
// NESBrowseFDSBios
//
this.NESBrowseFDSBios.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.NESBrowseFDSBios.Image = global::BizHawk.MultiClient.Properties.Resources.OpenFile;
this.NESBrowseFDSBios.Location = new System.Drawing.Point(442, 239);
this.NESBrowseFDSBios.Name = "NESBrowseFDSBios";
this.NESBrowseFDSBios.Size = new System.Drawing.Size(26, 23);
this.NESBrowseFDSBios.TabIndex = 28;
this.NESBrowseFDSBios.UseVisualStyleBackColor = true;
this.NESBrowseFDSBios.Click += new System.EventHandler(this.NESBrowseFDSBios_Click);
//
// NESFDSBiosDescription
//
this.NESFDSBiosDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.NESFDSBiosDescription.AutoSize = true;
this.NESFDSBiosDescription.Location = new System.Drawing.Point(474, 243);
this.NESFDSBiosDescription.Name = "NESFDSBiosDescription";
this.NESFDSBiosDescription.Size = new System.Drawing.Size(51, 13);
this.NESFDSBiosDescription.TabIndex = 29;
this.NESFDSBiosDescription.Text = "FDS Bios";
//
// PathConfig // PathConfig
// //
this.AcceptButton = this.OK; this.AcceptButton = this.OK;
@ -3435,5 +3471,8 @@
private System.Windows.Forms.Button button1; private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label1;
private System.Windows.Forms.ToolTip toolTip1; private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.Label NESFDSBiosDescription;
private System.Windows.Forms.Button NESBrowseFDSBios;
private System.Windows.Forms.TextBox NESFDSBiosBox;
} }
} }

View File

@ -66,6 +66,7 @@ namespace BizHawk.MultiClient
NESScreenshotsBox.Text = Global.Config.PathNESScreenshots; NESScreenshotsBox.Text = Global.Config.PathNESScreenshots;
NESCheatsBox.Text = Global.Config.PathNESCheats; NESCheatsBox.Text = Global.Config.PathNESCheats;
NESPaletteBox.Text = Global.Config.PathNESPalette; NESPaletteBox.Text = Global.Config.PathNESPalette;
NESFDSBiosBox.Text = Global.Config.PathFDSBios;
SNESBaseBox.Text = Global.Config.BaseSNES; SNESBaseBox.Text = Global.Config.BaseSNES;
SNESROMsBox.Text = Global.Config.PathSNESROMs; SNESROMsBox.Text = Global.Config.PathSNESROMs;
@ -214,6 +215,7 @@ namespace BizHawk.MultiClient
Global.Config.PathNESScreenshots = NESScreenshotsBox.Text; Global.Config.PathNESScreenshots = NESScreenshotsBox.Text;
Global.Config.PathNESCheats = NESCheatsBox.Text; Global.Config.PathNESCheats = NESCheatsBox.Text;
Global.Config.PathNESPalette = NESPaletteBox.Text; Global.Config.PathNESPalette = NESPaletteBox.Text;
Global.Config.PathFDSBios = NESFDSBiosBox.Text;
Global.Config.BaseSNES = SNESBaseBox.Text; Global.Config.BaseSNES = SNESBaseBox.Text;
Global.Config.PathSNESROMs = SNESROMsBox.Text; Global.Config.PathSNESROMs = SNESROMsBox.Text;
@ -791,5 +793,10 @@ namespace BizHawk.MultiClient
{ {
BrowseFolder(SNESSaveRAMBox, SNESSaveRAMDescription.Text); BrowseFolder(SNESSaveRAMBox, SNESSaveRAMDescription.Text);
} }
private void NESBrowseFDSBios_Click(object sender, EventArgs e)
{
BrowseFolder(NESFDSBiosBox, NESFDSBiosDescription.Text);
}
} }
} }

View File

@ -373,8 +373,8 @@
<data name="SNESBrowseFirmwares.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="SNESBrowseFirmwares.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -391,8 +391,8 @@
<data name="SNESBrowseCheats.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="SNESBrowseCheats.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -409,8 +409,8 @@
<data name="BrowseSNESSavestates.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="BrowseSNESSavestates.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -427,8 +427,8 @@
<data name="BrowseSNESScreenshots.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="BrowseSNESScreenshots.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -445,8 +445,8 @@
<data name="BrowseSNESSaveRAM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="BrowseSNESSaveRAM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -463,8 +463,8 @@
<data name="BrowseSNESROMs.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="BrowseSNESROMs.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -826,8 +826,8 @@
<data name="PCEBrowseBios.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="PCEBrowseBios.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -952,8 +952,8 @@
<data name="GBBrowsePalettes.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="GBBrowsePalettes.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1186,8 +1186,8 @@
<data name="AtariBrowseCheats.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="AtariBrowseCheats.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1204,8 +1204,8 @@
<data name="BrowseAtariSavestates.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="BrowseAtariSavestates.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1222,8 +1222,8 @@
<data name="BrowseAtariScreenshots.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="BrowseAtariScreenshots.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1240,8 +1240,8 @@
<data name="BrowseAtariSaveRAM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="BrowseAtariSaveRAM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1258,8 +1258,8 @@
<data name="BrowseAtariROMs.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="BrowseAtariROMs.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1276,8 +1276,8 @@
<data name="INTVBroseGROM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="INTVBroseGROM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1294,8 +1294,8 @@
<data name="INTVBrowseEROM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="INTVBrowseEROM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1312,8 +1312,8 @@
<data name="INTVBrowseCheats.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="INTVBrowseCheats.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1330,8 +1330,8 @@
<data name="INTVBrowseBase.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="INTVBrowseBase.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1348,8 +1348,8 @@
<data name="INTVBrowseScreenshots.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="INTVBrowseScreenshots.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1366,8 +1366,8 @@
<data name="INTVBrowseSavestates.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="INTVBrowseSavestates.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1384,8 +1384,8 @@
<data name="INTVBrowseROMs.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="INTVBrowseROMs.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1402,8 +1402,8 @@
<data name="INTVBrowseSaveRAM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="INTVBrowseSaveRAM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1420,8 +1420,8 @@
<data name="BrowseLog.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="BrowseLog.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
@ -1438,8 +1438,8 @@
<data name="BrowseMovieBackups.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="BrowseMovieBackups.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/QAA YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK/AAA
Cv0BS5xZCwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH CvwBmdu77wAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8 41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX