add FDS skeleton. set up your fds bios with pathconfig, then try to load any file with extension ".fds"
This commit is contained in:
parent
a34337691a
commit
7568ff9437
|
@ -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" />
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -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])
|
||||||
|
|
|
@ -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";
|
||||||
|
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
|
@ -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();
|
||||||
|
@ -329,7 +332,7 @@
|
||||||
// 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);
|
||||||
|
@ -359,7 +362,7 @@
|
||||||
// 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);
|
||||||
|
@ -389,7 +392,7 @@
|
||||||
// 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);
|
||||||
|
@ -419,7 +422,7 @@
|
||||||
// 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);
|
||||||
|
@ -449,7 +452,7 @@
|
||||||
// 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);
|
||||||
|
@ -479,7 +482,7 @@
|
||||||
// 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);
|
||||||
|
@ -509,7 +512,7 @@
|
||||||
// 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);
|
||||||
|
@ -539,7 +542,7 @@
|
||||||
// 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);
|
||||||
|
@ -569,7 +572,7 @@
|
||||||
// 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);
|
||||||
|
@ -599,7 +602,7 @@
|
||||||
// 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);
|
||||||
|
@ -629,7 +632,7 @@
|
||||||
// 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);
|
||||||
|
@ -660,7 +663,7 @@
|
||||||
//
|
//
|
||||||
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);
|
||||||
|
@ -690,8 +693,8 @@
|
||||||
// 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);
|
||||||
|
@ -746,7 +752,7 @@
|
||||||
// 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);
|
||||||
|
@ -777,10 +783,10 @@
|
||||||
//
|
//
|
||||||
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
|
||||||
|
@ -808,7 +814,7 @@
|
||||||
//
|
//
|
||||||
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;
|
||||||
|
@ -889,8 +895,8 @@
|
||||||
// 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;
|
||||||
|
@ -898,7 +904,7 @@
|
||||||
// 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);
|
||||||
|
@ -929,7 +935,7 @@
|
||||||
//
|
//
|
||||||
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);
|
||||||
|
@ -959,7 +965,7 @@
|
||||||
// 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);
|
||||||
|
@ -968,7 +974,7 @@
|
||||||
// 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);
|
||||||
|
@ -1019,7 +1025,7 @@
|
||||||
// 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);
|
||||||
|
@ -1059,7 +1065,7 @@
|
||||||
// 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);
|
||||||
|
@ -1107,7 +1113,7 @@
|
||||||
// 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);
|
||||||
|
@ -1137,7 +1143,7 @@
|
||||||
// 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);
|
||||||
|
@ -1194,7 +1200,7 @@
|
||||||
// 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);
|
||||||
|
@ -1225,7 +1231,7 @@
|
||||||
//
|
//
|
||||||
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);
|
||||||
|
@ -1255,7 +1261,7 @@
|
||||||
// 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);
|
||||||
|
@ -1264,7 +1270,7 @@
|
||||||
// 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);
|
||||||
|
@ -1315,7 +1321,7 @@
|
||||||
// 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);
|
||||||
|
@ -1355,7 +1361,7 @@
|
||||||
// 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);
|
||||||
|
@ -1402,7 +1408,7 @@
|
||||||
// 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);
|
||||||
|
@ -1432,7 +1438,7 @@
|
||||||
// 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);
|
||||||
|
@ -1441,7 +1447,7 @@
|
||||||
// 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);
|
||||||
|
@ -1492,7 +1498,7 @@
|
||||||
// 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);
|
||||||
|
@ -1532,7 +1538,7 @@
|
||||||
// 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);
|
||||||
|
@ -1573,7 +1579,7 @@
|
||||||
// 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);
|
||||||
|
@ -1609,7 +1615,7 @@
|
||||||
// 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);
|
||||||
|
@ -1639,7 +1645,7 @@
|
||||||
// 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);
|
||||||
|
@ -1648,7 +1654,7 @@
|
||||||
// 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);
|
||||||
|
@ -1699,7 +1705,7 @@
|
||||||
// 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);
|
||||||
|
@ -1718,7 +1724,7 @@
|
||||||
// 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);
|
||||||
|
@ -1780,7 +1786,7 @@
|
||||||
// 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);
|
||||||
|
@ -1819,7 +1825,7 @@
|
||||||
// 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);
|
||||||
|
@ -1849,7 +1855,7 @@
|
||||||
// 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);
|
||||||
|
@ -1879,7 +1885,7 @@
|
||||||
// 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);
|
||||||
|
@ -1889,7 +1895,7 @@
|
||||||
//
|
//
|
||||||
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);
|
||||||
|
@ -1941,7 +1947,7 @@
|
||||||
//
|
//
|
||||||
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);
|
||||||
|
@ -1982,7 +1988,7 @@
|
||||||
//
|
//
|
||||||
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);
|
||||||
|
@ -2023,7 +2029,7 @@
|
||||||
// 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);
|
||||||
|
@ -2062,7 +2068,7 @@
|
||||||
// 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);
|
||||||
|
@ -2071,7 +2077,7 @@
|
||||||
// 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);
|
||||||
|
@ -2122,7 +2128,7 @@
|
||||||
// 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);
|
||||||
|
@ -2131,7 +2137,7 @@
|
||||||
// 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);
|
||||||
|
@ -2182,7 +2188,7 @@
|
||||||
// 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);
|
||||||
|
@ -2222,7 +2228,7 @@
|
||||||
// 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);
|
||||||
|
@ -2263,7 +2269,7 @@
|
||||||
// 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);
|
||||||
|
@ -2299,7 +2305,7 @@
|
||||||
// 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);
|
||||||
|
@ -2329,7 +2335,7 @@
|
||||||
// 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);
|
||||||
|
@ -2338,7 +2344,7 @@
|
||||||
// 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);
|
||||||
|
@ -2390,7 +2396,7 @@
|
||||||
//
|
//
|
||||||
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);
|
||||||
|
@ -2430,7 +2436,7 @@
|
||||||
// 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);
|
||||||
|
@ -2472,7 +2478,7 @@
|
||||||
//
|
//
|
||||||
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);
|
||||||
|
@ -2508,7 +2514,7 @@
|
||||||
// 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);
|
||||||
|
@ -2539,7 +2545,7 @@
|
||||||
//
|
//
|
||||||
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);
|
||||||
|
@ -2569,7 +2575,7 @@
|
||||||
// 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);
|
||||||
|
@ -2578,7 +2584,7 @@
|
||||||
// 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);
|
||||||
|
@ -2629,7 +2635,7 @@
|
||||||
// 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);
|
||||||
|
@ -2669,7 +2675,7 @@
|
||||||
// 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);
|
||||||
|
@ -2723,7 +2729,7 @@
|
||||||
// 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);
|
||||||
|
@ -2753,7 +2759,7 @@
|
||||||
// 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);
|
||||||
|
@ -2783,7 +2789,7 @@
|
||||||
// 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);
|
||||||
|
@ -2813,7 +2819,7 @@
|
||||||
// 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);
|
||||||
|
@ -2823,7 +2829,7 @@
|
||||||
//
|
//
|
||||||
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);
|
||||||
|
@ -2875,7 +2881,7 @@
|
||||||
//
|
//
|
||||||
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);
|
||||||
|
@ -2916,7 +2922,7 @@
|
||||||
//
|
//
|
||||||
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);
|
||||||
|
@ -2957,7 +2963,7 @@
|
||||||
// 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);
|
||||||
|
@ -3015,7 +3021,7 @@
|
||||||
//
|
//
|
||||||
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);
|
||||||
|
@ -3024,7 +3030,7 @@
|
||||||
// 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);
|
||||||
|
@ -3054,7 +3060,7 @@
|
||||||
// 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;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue