make firmware path system less robust and more annoying
This commit is contained in:
parent
172a344ada
commit
d9240844bc
|
@ -111,7 +111,7 @@ namespace BizHawk.MultiClient
|
|||
public string PathSNESSaveRAM = Path.Combine(".", "SaveRAM");
|
||||
public string PathSNESScreenshots = Path.Combine(".", "Screenshots");
|
||||
public string PathSNESCheats = Path.Combine(".", "Cheats");
|
||||
public string PathSNESFirmwares = Path.Combine(".", "Firmwares");
|
||||
//public string PathSNESFirmwares = Path.Combine(".", "Firmwares");
|
||||
|
||||
public string BaseGBA = Path.Combine(".", "GBA");
|
||||
public string PathGBAROMs = ".";
|
||||
|
@ -182,14 +182,14 @@ namespace BizHawk.MultiClient
|
|||
public string PathAtari7800SaveRAM = Path.Combine(".", "SaveRAM");
|
||||
public string PathAtari7800Screenshots = Path.Combine(".", "Screenshots");
|
||||
public string PathAtari7800Cheats = Path.Combine(".", "Cheats");
|
||||
public string PathAtari7800Firmwares = Path.Combine(".", "Firmwares");
|
||||
//public string PathAtari7800Firmwares = Path.Combine(".", "Firmwares");
|
||||
|
||||
public string BaseC64 = Path.Combine(".", "C64");
|
||||
public string PathC64ROMs = ".";
|
||||
public string PathC64Savestates = Path.Combine(".", "State");
|
||||
public string PathC64Screenshots = Path.Combine(".", "Screenshots");
|
||||
public string PathC64Cheats = Path.Combine(".", "Cheats");
|
||||
public string PathC64Firmwares = Path.Combine(".", "Firmwares");
|
||||
//public string PathC64Firmwares = Path.Combine(".", "Firmwares");
|
||||
|
||||
public string BasePSX = Path.Combine(".", "PSX");
|
||||
public string PathPSXROMs = ".";
|
||||
|
@ -197,7 +197,7 @@ namespace BizHawk.MultiClient
|
|||
public string PathPSXSaveRAM = Path.Combine(".", "SaveRAM");
|
||||
public string PathPSXScreenshots = Path.Combine(".", "Screenshots");
|
||||
public string PathPSXCheats = Path.Combine(".", "Cheats");
|
||||
public string PathPSXFirmwares = Path.Combine(".", "Firmwares");
|
||||
//public string PathPSXFirmwares = Path.Combine(".", "Firmwares");
|
||||
|
||||
public string BaseCOL = Path.Combine(".", "Coleco");
|
||||
public string PathCOLROMs = ".";
|
||||
|
@ -211,14 +211,15 @@ namespace BizHawk.MultiClient
|
|||
public string WatchPath = ".";
|
||||
public string AVIPath = ".";
|
||||
public string LogPath = ".";
|
||||
public string FirmwaresPath = Path.Combine(".", "Firmware");
|
||||
|
||||
//BIOS Paths
|
||||
public string PathGBABIOS = Path.Combine(".", "gbabios.rom");
|
||||
public string PathPCEBios = Path.Combine(".", "PCECDBios.pce");
|
||||
public string PathCOLBios = Path.Combine(".", "ColecoBios.bin");
|
||||
public string PathINTVGROM = Path.Combine(".", "grom.bin");
|
||||
public string PathINTVEROM = Path.Combine(".", "erom.bin");
|
||||
public string PathFDSBios = Path.Combine(".", "disksys.rom");
|
||||
//public string PathGBABIOS = Path.Combine(".", "gbabios.rom");
|
||||
//public string PathPCEBios = Path.Combine(".", "PCECDBios.pce");
|
||||
//public string PathCOLBios = Path.Combine(".", "ColecoBios.bin");
|
||||
//public string PathINTVGROM = Path.Combine(".", "grom.bin");
|
||||
//public string PathINTVEROM = Path.Combine(".", "erom.bin");
|
||||
//public string PathFDSBios = Path.Combine(".", "disksys.rom");
|
||||
|
||||
public string FFMpegPath = "%exe%/dll/ffmpeg.exe";
|
||||
|
||||
|
|
|
@ -372,11 +372,11 @@ namespace BizHawk.MultiClient
|
|||
target.SMS_ShowBG = Global.Config.SMSDispBG;
|
||||
target.SMS_ShowOBJ = Global.Config.SMSDispOBJ;
|
||||
|
||||
target.PSX_FirmwaresPath = PathManager.MakeAbsolutePath(Global.Config.PathPSXFirmwares, "PSX");
|
||||
target.PSX_FirmwaresPath = Global.Config.FirmwaresPath; // PathManager.MakeAbsolutePath(Global.Config.PathPSXFirmwares, "PSX");
|
||||
|
||||
target.C64_FirmwaresPath = PathManager.MakeAbsolutePath(Global.Config.PathC64Firmwares, "C64");
|
||||
target.C64_FirmwaresPath = Global.Config.FirmwaresPath; // PathManager.MakeAbsolutePath(Global.Config.PathC64Firmwares, "C64");
|
||||
|
||||
target.SNES_FirmwaresPath = PathManager.MakeAbsolutePath(Global.Config.PathSNESFirmwares, "SNES");
|
||||
target.SNES_FirmwaresPath = Global.Config.FirmwaresPath; // PathManager.MakeAbsolutePath(Global.Config.PathSNESFirmwares, "SNES");
|
||||
target.SNES_ShowBG1_0 = Global.Config.SNES_ShowBG1_0;
|
||||
target.SNES_ShowBG1_1 = Global.Config.SNES_ShowBG1_1;
|
||||
target.SNES_ShowBG2_0 = Global.Config.SNES_ShowBG2_0;
|
||||
|
@ -1797,7 +1797,7 @@ namespace BizHawk.MultiClient
|
|||
case "PCE":
|
||||
case "PCECD":
|
||||
{
|
||||
string biosPath = PathManager.MakeAbsolutePath(Global.Config.PathPCEBios, "PCE");
|
||||
string biosPath = Path.Combine(Global.Config.FirmwaresPath, "[BIOS] Super CD-ROM System (Japan) (v3.0).pce"); //PathManager.MakeAbsolutePath(Global.Config.PathPCEBios, "PCE");
|
||||
if (File.Exists(biosPath) == false)
|
||||
{
|
||||
MessageBox.Show("PCE-CD System Card not found. Please check the BIOS path in Config->Paths->PC Engine.");
|
||||
|
@ -1883,7 +1883,7 @@ namespace BizHawk.MultiClient
|
|||
break;
|
||||
case "NES":
|
||||
{
|
||||
string biosPath = PathManager.MakeAbsolutePath(Global.Config.PathFDSBios, "NES");
|
||||
string biosPath = Path.Combine(Global.Config.FirmwaresPath, "disksys.rom"); //PathManager.MakeAbsolutePath(Global.Config.PathFDSBios, "NES");
|
||||
byte[] bios = null;
|
||||
if (File.Exists(biosPath))
|
||||
{
|
||||
|
@ -1942,7 +1942,7 @@ namespace BizHawk.MultiClient
|
|||
else
|
||||
{
|
||||
// todo: get these bioses into a gamedb?? then we could demand different filenames for different regions?
|
||||
string sgbromPath = Path.Combine(PathManager.MakeAbsolutePath(Global.Config.PathSNESFirmwares, "SNES"), "sgb.sfc");
|
||||
string sgbromPath = Path.Combine(Global.Config.FirmwaresPath, "sgb.sfc"); //Path.Combine(PathManager.MakeAbsolutePath(Global.Config.PathSNESFirmwares, "SNES"), "sgb.sfc");
|
||||
byte[] sgbrom = null;
|
||||
try
|
||||
{
|
||||
|
@ -1952,7 +1952,7 @@ namespace BizHawk.MultiClient
|
|||
}
|
||||
else
|
||||
{
|
||||
MessageBox.Show("Couldn't open sgb.sfc from the configured SNES firmwares path, which is:\n\n" + PathManager.MakeAbsolutePath(Global.Config.PathSNESFirmwares, "SNES") + "\n\nPlease make sure it is available and try again.\n\nWe're going to disable SGB for now; please re-enable it when you've set up the file.");
|
||||
MessageBox.Show("Couldn't open sgb.sfc from the configured SNES firmwares path, which is:\n\n" + sgbromPath + "\n\nPlease make sure it is available and try again.\n\nWe're going to disable SGB for now; please re-enable it when you've set up the file.");
|
||||
Global.Config.GB_AsSGB = false;
|
||||
game.System = "GB";
|
||||
goto RETRY;
|
||||
|
@ -1976,7 +1976,7 @@ namespace BizHawk.MultiClient
|
|||
}
|
||||
break;
|
||||
case "Coleco":
|
||||
string colbiosPath = PathManager.MakeAbsolutePath(Global.Config.PathCOLBios, "Coleco");
|
||||
string colbiosPath = Path.Combine(Global.Config.FirmwaresPath, "ColecoBios.bin"); // PathManager.MakeAbsolutePath(Global.Config.PathCOLBios, "Coleco");
|
||||
FileInfo colfile = new FileInfo(colbiosPath);
|
||||
if (!colfile.Exists)
|
||||
{
|
||||
|
@ -1992,11 +1992,11 @@ namespace BizHawk.MultiClient
|
|||
case "INTV":
|
||||
{
|
||||
Intellivision intv = new Intellivision(nextComm, game, rom.RomData);
|
||||
string eromPath = PathManager.MakeAbsolutePath(Global.Config.PathINTVEROM, "INTV");
|
||||
string eromPath = Path.Combine(Global.Config.FirmwaresPath, "EROM"); //PathManager.MakeAbsolutePath(Global.Config.PathINTVEROM, "INTV");
|
||||
if (!File.Exists(eromPath))
|
||||
throw new InvalidOperationException("Specified EROM path does not exist:\n\n" + eromPath);
|
||||
intv.LoadExecutiveRom(eromPath);
|
||||
string gromPath = PathManager.MakeAbsolutePath(Global.Config.PathINTVGROM, "INTV");
|
||||
string gromPath = Path.Combine(Global.Config.FirmwaresPath, "GROM"); //PathManager.MakeAbsolutePath(Global.Config.PathINTVGROM, "INTV");
|
||||
if (!File.Exists(gromPath))
|
||||
throw new InvalidOperationException("Specified GROM path does not exist:\n\n" + gromPath);
|
||||
intv.LoadGraphicsRom(gromPath);
|
||||
|
@ -2004,9 +2004,9 @@ namespace BizHawk.MultiClient
|
|||
}
|
||||
break;
|
||||
case "A78":
|
||||
string ntsc_biospath = PathManager.MakeAbsolutePath(Path.Combine(Global.Config.PathAtari7800Firmwares, "7800NTSCBIOS.bin"), "A78");
|
||||
string pal_biospath = PathManager.MakeAbsolutePath(Path.Combine(Global.Config.PathAtari7800Firmwares, "7800PALBIOS.bin"), "A78");
|
||||
string hsbiospath = PathManager.MakeAbsolutePath(Path.Combine(Global.Config.PathAtari7800Firmwares, "7800highscore.bin"), "A78");
|
||||
string ntsc_biospath = Path.Combine(Global.Config.FirmwaresPath, "7800NTSCBIOS.bin");
|
||||
string pal_biospath = Path.Combine(Global.Config.FirmwaresPath, "7800PALBIOS.bin");
|
||||
string hsbiospath = Path.Combine(Global.Config.FirmwaresPath, "7800highscore.bin");
|
||||
|
||||
FileInfo ntscfile = new FileInfo(ntsc_biospath);
|
||||
FileInfo palfile = new FileInfo(pal_biospath);
|
||||
|
@ -2047,7 +2047,7 @@ namespace BizHawk.MultiClient
|
|||
case "GBA":
|
||||
if (INTERIM)
|
||||
{
|
||||
string gbabiospath = PathManager.MakeAbsolutePath(Global.Config.PathGBABIOS, "GBA");
|
||||
string gbabiospath = Path.Combine(Global.Config.FirmwaresPath, "gbabios.rom"); //PathManager.MakeAbsolutePath(Global.Config.PathGBABIOS, "GBA");
|
||||
byte[] gbabios = null;
|
||||
|
||||
if (File.Exists(gbabiospath))
|
||||
|
|
|
@ -70,9 +70,6 @@
|
|||
this.BrowseAVI = new System.Windows.Forms.Button();
|
||||
this.tabControl1 = new System.Windows.Forms.TabControl();
|
||||
this.tabPageNES = new System.Windows.Forms.TabPage();
|
||||
this.NESFDSBiosDescription = new System.Windows.Forms.Label();
|
||||
this.NESBrowseFDSBios = new System.Windows.Forms.Button();
|
||||
this.NESFDSBiosBox = new System.Windows.Forms.TextBox();
|
||||
this.NESBaseBox = new System.Windows.Forms.TextBox();
|
||||
this.NESPaletteDescription = new System.Windows.Forms.Label();
|
||||
this.NESBrowsePalette = new System.Windows.Forms.Button();
|
||||
|
@ -83,9 +80,6 @@
|
|||
this.NESBaseDescription = new System.Windows.Forms.Label();
|
||||
this.BrowseNESBase = new System.Windows.Forms.Button();
|
||||
this.tabPageSNES = new System.Windows.Forms.TabPage();
|
||||
this.SNESFirmwaresDescription = new System.Windows.Forms.LinkLabel();
|
||||
this.SNESBrowseFirmwares = new System.Windows.Forms.Button();
|
||||
this.SNESFirmwaresBox = new System.Windows.Forms.TextBox();
|
||||
this.SNESBaseBox = new System.Windows.Forms.TextBox();
|
||||
this.SNESCheatsDescription = new System.Windows.Forms.Label();
|
||||
this.SNESBrowseCheats = new System.Windows.Forms.Button();
|
||||
|
@ -170,9 +164,6 @@
|
|||
this.GenesisROMsBox = new System.Windows.Forms.TextBox();
|
||||
this.tabPagePCE = new System.Windows.Forms.TabPage();
|
||||
this.PCEBaseBox = new System.Windows.Forms.TextBox();
|
||||
this.PCEBiosDescription = new System.Windows.Forms.Label();
|
||||
this.PCEBrowseBios = new System.Windows.Forms.Button();
|
||||
this.PCEBiosBox = new System.Windows.Forms.TextBox();
|
||||
this.PCECheatsDescription = new System.Windows.Forms.Label();
|
||||
this.PCEBrowseCheats = new System.Windows.Forms.Button();
|
||||
this.PCECheatsBox = new System.Windows.Forms.TextBox();
|
||||
|
@ -214,9 +205,6 @@
|
|||
this.GBSaveRAMBox = new System.Windows.Forms.TextBox();
|
||||
this.tabPageGBA = new System.Windows.Forms.TabPage();
|
||||
this.GBABaseBox = new System.Windows.Forms.TextBox();
|
||||
this.GBAFirmwaresBox = new System.Windows.Forms.TextBox();
|
||||
this.GBABrowseFirmwares = new System.Windows.Forms.Button();
|
||||
this.GBAFirmwaresDescription = new System.Windows.Forms.Label();
|
||||
this.GBACheatsDescription = new System.Windows.Forms.Label();
|
||||
this.GBABrowseCheats = new System.Windows.Forms.Button();
|
||||
this.GBACheatsBox = new System.Windows.Forms.TextBox();
|
||||
|
@ -270,15 +258,15 @@
|
|||
this.Atari2600ROMsDescription = new System.Windows.Forms.Label();
|
||||
this.Atari2600BrowseROMs = new System.Windows.Forms.Button();
|
||||
this.tabPageAtari7800 = new System.Windows.Forms.TabPage();
|
||||
this.Atari7800FirmwaresDescription = new System.Windows.Forms.LinkLabel();
|
||||
this.Atari7800SaveRAMsDescription = new System.Windows.Forms.Label();
|
||||
this.BrowseAtari7800SaveRAM = new System.Windows.Forms.Button();
|
||||
this.Atari7800SaveRAMBox = new System.Windows.Forms.TextBox();
|
||||
this.Atari7800BaseDescription = new System.Windows.Forms.Label();
|
||||
this.Atari7800CheatsDescription = new System.Windows.Forms.Label();
|
||||
this.Atari7800SavestatesDescription = new System.Windows.Forms.Label();
|
||||
this.Atari7800ScreenshotsDescription = new System.Windows.Forms.Label();
|
||||
this.Atari7800ROMsDescription = new System.Windows.Forms.Label();
|
||||
this.Atari7800BaseBox = new System.Windows.Forms.TextBox();
|
||||
this.Atari7800BrowseFirmwares = new System.Windows.Forms.Button();
|
||||
this.Atari7800FirmwaresBox = new System.Windows.Forms.TextBox();
|
||||
this.BrowseAtari7800Base = new System.Windows.Forms.Button();
|
||||
this.Atari7800ROMsBox = new System.Windows.Forms.TextBox();
|
||||
this.Atari7800CheatsBox = new System.Windows.Forms.TextBox();
|
||||
|
@ -290,12 +278,6 @@
|
|||
this.Atari7800BrowseROMs = new System.Windows.Forms.Button();
|
||||
this.tabPageIntellivision = new System.Windows.Forms.TabPage();
|
||||
this.INTVBaseBox = new System.Windows.Forms.TextBox();
|
||||
this.INTVGROMDescription = new System.Windows.Forms.Label();
|
||||
this.INTVBroseGROM = new System.Windows.Forms.Button();
|
||||
this.INTVGROMBox = new System.Windows.Forms.TextBox();
|
||||
this.INTVEROMDescription = new System.Windows.Forms.Label();
|
||||
this.INTVBrowseEROM = new System.Windows.Forms.Button();
|
||||
this.INTVEROMBox = new System.Windows.Forms.TextBox();
|
||||
this.INTVCheatsDescription = new System.Windows.Forms.Label();
|
||||
this.INTVBrowseCheats = new System.Windows.Forms.Button();
|
||||
this.INTVCheatsBox = new System.Windows.Forms.TextBox();
|
||||
|
@ -315,9 +297,6 @@
|
|||
this.INTVSaveRAMBox = new System.Windows.Forms.TextBox();
|
||||
this.tabPageColeco = new System.Windows.Forms.TabPage();
|
||||
this.COLBaseBox = new System.Windows.Forms.TextBox();
|
||||
this.COLBiosDescription = new System.Windows.Forms.Label();
|
||||
this.COLBrowseBios = new System.Windows.Forms.Button();
|
||||
this.COLBiosBox = new System.Windows.Forms.TextBox();
|
||||
this.COLCheatsDescription = new System.Windows.Forms.Label();
|
||||
this.COLBrowseCheats = new System.Windows.Forms.Button();
|
||||
this.COLCheatsBox = new System.Windows.Forms.TextBox();
|
||||
|
@ -333,9 +312,6 @@
|
|||
this.COLSavestatesBox = new System.Windows.Forms.TextBox();
|
||||
this.COLBrowseROMs = new System.Windows.Forms.Button();
|
||||
this.tabPageC64 = new System.Windows.Forms.TabPage();
|
||||
this.C64FirmwaresDescription = new System.Windows.Forms.LinkLabel();
|
||||
this.C64BrowseFirmwares = new System.Windows.Forms.Button();
|
||||
this.C64FirmwaresBox = new System.Windows.Forms.TextBox();
|
||||
this.C64CheatsDescription = new System.Windows.Forms.Label();
|
||||
this.C64BrowseCheats = new System.Windows.Forms.Button();
|
||||
this.C64CheatsBox = new System.Windows.Forms.TextBox();
|
||||
|
@ -367,9 +343,9 @@
|
|||
this.button1 = new System.Windows.Forms.Button();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
||||
this.Atari7800SaveRAMsDescription = new System.Windows.Forms.Label();
|
||||
this.BrowseAtari7800SaveRAM = new System.Windows.Forms.Button();
|
||||
this.Atari7800SaveRAMBox = new System.Windows.Forms.TextBox();
|
||||
this.labelFirmware = new System.Windows.Forms.Label();
|
||||
this.buttonFirmware = new System.Windows.Forms.Button();
|
||||
this.textBoxFirmware = new System.Windows.Forms.TextBox();
|
||||
this.tabControl1.SuspendLayout();
|
||||
this.tabPageNES.SuspendLayout();
|
||||
this.tabPageSNES.SuspendLayout();
|
||||
|
@ -804,9 +780,6 @@
|
|||
//
|
||||
// tabPageNES
|
||||
//
|
||||
this.tabPageNES.Controls.Add(this.NESFDSBiosDescription);
|
||||
this.tabPageNES.Controls.Add(this.NESBrowseFDSBios);
|
||||
this.tabPageNES.Controls.Add(this.NESFDSBiosBox);
|
||||
this.tabPageNES.Controls.Add(this.NESBaseBox);
|
||||
this.tabPageNES.Controls.Add(this.NESPaletteDescription);
|
||||
this.tabPageNES.Controls.Add(this.NESBrowsePalette);
|
||||
|
@ -836,36 +809,6 @@
|
|||
this.tabPageNES.Text = "NES";
|
||||
this.tabPageNES.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// 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";
|
||||
//
|
||||
// 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);
|
||||
//
|
||||
// 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;
|
||||
//
|
||||
// NESBaseBox
|
||||
//
|
||||
this.NESBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
|
@ -960,9 +903,6 @@
|
|||
//
|
||||
// tabPageSNES
|
||||
//
|
||||
this.tabPageSNES.Controls.Add(this.SNESFirmwaresDescription);
|
||||
this.tabPageSNES.Controls.Add(this.SNESBrowseFirmwares);
|
||||
this.tabPageSNES.Controls.Add(this.SNESFirmwaresBox);
|
||||
this.tabPageSNES.Controls.Add(this.SNESBaseBox);
|
||||
this.tabPageSNES.Controls.Add(this.SNESCheatsDescription);
|
||||
this.tabPageSNES.Controls.Add(this.SNESBrowseCheats);
|
||||
|
@ -983,42 +923,11 @@
|
|||
this.tabPageSNES.Controls.Add(this.SNESBrowseROMs);
|
||||
this.tabPageSNES.Location = new System.Drawing.Point(4, 40);
|
||||
this.tabPageSNES.Name = "tabPageSNES";
|
||||
this.tabPageSNES.Size = new System.Drawing.Size(566, 257);
|
||||
this.tabPageSNES.Size = new System.Drawing.Size(566, 278);
|
||||
this.tabPageSNES.TabIndex = 11;
|
||||
this.tabPageSNES.Text = "SNES";
|
||||
this.tabPageSNES.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// SNESFirmwaresDescription
|
||||
//
|
||||
this.SNESFirmwaresDescription.AutoSize = true;
|
||||
this.SNESFirmwaresDescription.Location = new System.Drawing.Point(474, 216);
|
||||
this.SNESFirmwaresDescription.Name = "SNESFirmwaresDescription";
|
||||
this.SNESFirmwaresDescription.Size = new System.Drawing.Size(54, 13);
|
||||
this.SNESFirmwaresDescription.TabIndex = 95;
|
||||
this.SNESFirmwaresDescription.TabStop = true;
|
||||
this.SNESFirmwaresDescription.Text = "Firmwares";
|
||||
this.SNESFirmwaresDescription.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.SNESFirmwaresDescription_LinkClicked);
|
||||
//
|
||||
// SNESBrowseFirmwares
|
||||
//
|
||||
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.Location = new System.Drawing.Point(442, 209);
|
||||
this.SNESBrowseFirmwares.Name = "SNESBrowseFirmwares";
|
||||
this.SNESBrowseFirmwares.Size = new System.Drawing.Size(26, 23);
|
||||
this.SNESBrowseFirmwares.TabIndex = 93;
|
||||
this.SNESBrowseFirmwares.UseVisualStyleBackColor = true;
|
||||
this.SNESBrowseFirmwares.Click += new System.EventHandler(this.SNESBrowseFirmwares_Click);
|
||||
//
|
||||
// SNESFirmwaresBox
|
||||
//
|
||||
this.SNESFirmwaresBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.SNESFirmwaresBox.Location = new System.Drawing.Point(13, 209);
|
||||
this.SNESFirmwaresBox.Name = "SNESFirmwaresBox";
|
||||
this.SNESFirmwaresBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.SNESFirmwaresBox.TabIndex = 92;
|
||||
//
|
||||
// SNESBaseBox
|
||||
//
|
||||
this.SNESBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
|
@ -1223,7 +1132,7 @@
|
|||
this.tabPageSMS.Location = new System.Drawing.Point(4, 40);
|
||||
this.tabPageSMS.Name = "tabPageSMS";
|
||||
this.tabPageSMS.Padding = new System.Windows.Forms.Padding(3);
|
||||
this.tabPageSMS.Size = new System.Drawing.Size(566, 257);
|
||||
this.tabPageSMS.Size = new System.Drawing.Size(566, 278);
|
||||
this.tabPageSMS.TabIndex = 1;
|
||||
this.tabPageSMS.Text = "SMS";
|
||||
this.tabPageSMS.UseVisualStyleBackColor = true;
|
||||
|
@ -1310,7 +1219,7 @@
|
|||
this.tabPageSG1000.Controls.Add(this.SGBrowseROMs);
|
||||
this.tabPageSG1000.Location = new System.Drawing.Point(4, 40);
|
||||
this.tabPageSG1000.Name = "tabPageSG1000";
|
||||
this.tabPageSG1000.Size = new System.Drawing.Size(566, 257);
|
||||
this.tabPageSG1000.Size = new System.Drawing.Size(566, 278);
|
||||
this.tabPageSG1000.TabIndex = 8;
|
||||
this.tabPageSG1000.Text = "SG-1000";
|
||||
this.tabPageSG1000.UseVisualStyleBackColor = true;
|
||||
|
@ -1518,7 +1427,7 @@
|
|||
this.tabPageGGear.Controls.Add(this.GGSaveRAMBox);
|
||||
this.tabPageGGear.Location = new System.Drawing.Point(4, 40);
|
||||
this.tabPageGGear.Name = "tabPageGGear";
|
||||
this.tabPageGGear.Size = new System.Drawing.Size(566, 257);
|
||||
this.tabPageGGear.Size = new System.Drawing.Size(566, 278);
|
||||
this.tabPageGGear.TabIndex = 7;
|
||||
this.tabPageGGear.Text = "G. Gear";
|
||||
this.tabPageGGear.UseVisualStyleBackColor = true;
|
||||
|
@ -1725,7 +1634,7 @@
|
|||
this.tabPageGenesis.Controls.Add(this.GenesisROMsBox);
|
||||
this.tabPageGenesis.Location = new System.Drawing.Point(4, 40);
|
||||
this.tabPageGenesis.Name = "tabPageGenesis";
|
||||
this.tabPageGenesis.Size = new System.Drawing.Size(566, 257);
|
||||
this.tabPageGenesis.Size = new System.Drawing.Size(566, 278);
|
||||
this.tabPageGenesis.TabIndex = 2;
|
||||
this.tabPageGenesis.Text = "Genesis";
|
||||
this.tabPageGenesis.UseVisualStyleBackColor = true;
|
||||
|
@ -1913,9 +1822,6 @@
|
|||
// tabPagePCE
|
||||
//
|
||||
this.tabPagePCE.Controls.Add(this.PCEBaseBox);
|
||||
this.tabPagePCE.Controls.Add(this.PCEBiosDescription);
|
||||
this.tabPagePCE.Controls.Add(this.PCEBrowseBios);
|
||||
this.tabPagePCE.Controls.Add(this.PCEBiosBox);
|
||||
this.tabPagePCE.Controls.Add(this.PCECheatsDescription);
|
||||
this.tabPagePCE.Controls.Add(this.PCEBrowseCheats);
|
||||
this.tabPagePCE.Controls.Add(this.PCECheatsBox);
|
||||
|
@ -1935,7 +1841,7 @@
|
|||
this.tabPagePCE.Controls.Add(this.PCESaveRAMBox);
|
||||
this.tabPagePCE.Location = new System.Drawing.Point(4, 40);
|
||||
this.tabPagePCE.Name = "tabPagePCE";
|
||||
this.tabPagePCE.Size = new System.Drawing.Size(566, 257);
|
||||
this.tabPagePCE.Size = new System.Drawing.Size(566, 278);
|
||||
this.tabPagePCE.TabIndex = 3;
|
||||
this.tabPagePCE.Text = "PC Engine";
|
||||
this.tabPagePCE.UseVisualStyleBackColor = true;
|
||||
|
@ -1949,36 +1855,6 @@
|
|||
this.PCEBaseBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.PCEBaseBox.TabIndex = 77;
|
||||
//
|
||||
// PCEBiosDescription
|
||||
//
|
||||
this.PCEBiosDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.PCEBiosDescription.AutoSize = true;
|
||||
this.PCEBiosDescription.Location = new System.Drawing.Point(474, 212);
|
||||
this.PCEBiosDescription.Name = "PCEBiosDescription";
|
||||
this.PCEBiosDescription.Size = new System.Drawing.Size(50, 13);
|
||||
this.PCEBiosDescription.TabIndex = 91;
|
||||
this.PCEBiosDescription.Text = "CD BIOS";
|
||||
//
|
||||
// PCEBrowseBios
|
||||
//
|
||||
this.PCEBrowseBios.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.PCEBrowseBios.Image = ((System.Drawing.Image)(resources.GetObject("PCEBrowseBios.Image")));
|
||||
this.PCEBrowseBios.Location = new System.Drawing.Point(442, 209);
|
||||
this.PCEBrowseBios.Name = "PCEBrowseBios";
|
||||
this.PCEBrowseBios.Size = new System.Drawing.Size(26, 23);
|
||||
this.PCEBrowseBios.TabIndex = 90;
|
||||
this.PCEBrowseBios.UseVisualStyleBackColor = true;
|
||||
this.PCEBrowseBios.Click += new System.EventHandler(this.PCEBrowseBios_Click);
|
||||
//
|
||||
// PCEBiosBox
|
||||
//
|
||||
this.PCEBiosBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.PCEBiosBox.Location = new System.Drawing.Point(13, 209);
|
||||
this.PCEBiosBox.Name = "PCEBiosBox";
|
||||
this.PCEBiosBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.PCEBiosBox.TabIndex = 89;
|
||||
//
|
||||
// PCECheatsDescription
|
||||
//
|
||||
this.PCECheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
|
@ -2396,9 +2272,6 @@
|
|||
// tabPageGBA
|
||||
//
|
||||
this.tabPageGBA.Controls.Add(this.GBABaseBox);
|
||||
this.tabPageGBA.Controls.Add(this.GBAFirmwaresBox);
|
||||
this.tabPageGBA.Controls.Add(this.GBABrowseFirmwares);
|
||||
this.tabPageGBA.Controls.Add(this.GBAFirmwaresDescription);
|
||||
this.tabPageGBA.Controls.Add(this.GBACheatsDescription);
|
||||
this.tabPageGBA.Controls.Add(this.GBABrowseCheats);
|
||||
this.tabPageGBA.Controls.Add(this.GBACheatsBox);
|
||||
|
@ -2432,36 +2305,6 @@
|
|||
this.GBABaseBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.GBABaseBox.TabIndex = 111;
|
||||
//
|
||||
// GBAFirmwaresBox
|
||||
//
|
||||
this.GBAFirmwaresBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.GBAFirmwaresBox.Location = new System.Drawing.Point(13, 209);
|
||||
this.GBAFirmwaresBox.Name = "GBAFirmwaresBox";
|
||||
this.GBAFirmwaresBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.GBAFirmwaresBox.TabIndex = 124;
|
||||
//
|
||||
// GBABrowseFirmwares
|
||||
//
|
||||
this.GBABrowseFirmwares.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.GBABrowseFirmwares.Image = ((System.Drawing.Image)(resources.GetObject("GBABrowseFirmwares.Image")));
|
||||
this.GBABrowseFirmwares.Location = new System.Drawing.Point(442, 209);
|
||||
this.GBABrowseFirmwares.Name = "GBABrowseFirmwares";
|
||||
this.GBABrowseFirmwares.Size = new System.Drawing.Size(26, 23);
|
||||
this.GBABrowseFirmwares.TabIndex = 125;
|
||||
this.GBABrowseFirmwares.UseVisualStyleBackColor = true;
|
||||
this.GBABrowseFirmwares.Click += new System.EventHandler(this.GBABrowseFirmwares_Click);
|
||||
//
|
||||
// GBAFirmwaresDescription
|
||||
//
|
||||
this.GBAFirmwaresDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.GBAFirmwaresDescription.AutoSize = true;
|
||||
this.GBAFirmwaresDescription.Location = new System.Drawing.Point(474, 213);
|
||||
this.GBAFirmwaresDescription.Name = "GBAFirmwaresDescription";
|
||||
this.GBAFirmwaresDescription.Size = new System.Drawing.Size(32, 13);
|
||||
this.GBAFirmwaresDescription.TabIndex = 123;
|
||||
this.GBAFirmwaresDescription.Text = "BIOS";
|
||||
//
|
||||
// GBACheatsDescription
|
||||
//
|
||||
this.GBACheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
|
@ -2655,7 +2498,7 @@
|
|||
this.tabPageTI83.Controls.Add(this.TI83SaveRAMBox);
|
||||
this.tabPageTI83.Location = new System.Drawing.Point(4, 40);
|
||||
this.tabPageTI83.Name = "tabPageTI83";
|
||||
this.tabPageTI83.Size = new System.Drawing.Size(566, 257);
|
||||
this.tabPageTI83.Size = new System.Drawing.Size(566, 278);
|
||||
this.tabPageTI83.TabIndex = 5;
|
||||
this.tabPageTI83.Text = "TI83";
|
||||
this.tabPageTI83.UseVisualStyleBackColor = true;
|
||||
|
@ -2861,7 +2704,7 @@
|
|||
this.tabPageAtari2600.Controls.Add(this.Atari2600BrowseROMs);
|
||||
this.tabPageAtari2600.Location = new System.Drawing.Point(4, 40);
|
||||
this.tabPageAtari2600.Name = "tabPageAtari2600";
|
||||
this.tabPageAtari2600.Size = new System.Drawing.Size(566, 257);
|
||||
this.tabPageAtari2600.Size = new System.Drawing.Size(566, 278);
|
||||
this.tabPageAtari2600.TabIndex = 9;
|
||||
this.tabPageAtari2600.Text = "A. 2600";
|
||||
this.tabPageAtari2600.UseVisualStyleBackColor = true;
|
||||
|
@ -3022,15 +2865,12 @@
|
|||
this.tabPageAtari7800.Controls.Add(this.Atari7800SaveRAMsDescription);
|
||||
this.tabPageAtari7800.Controls.Add(this.BrowseAtari7800SaveRAM);
|
||||
this.tabPageAtari7800.Controls.Add(this.Atari7800SaveRAMBox);
|
||||
this.tabPageAtari7800.Controls.Add(this.Atari7800FirmwaresDescription);
|
||||
this.tabPageAtari7800.Controls.Add(this.Atari7800BaseDescription);
|
||||
this.tabPageAtari7800.Controls.Add(this.Atari7800CheatsDescription);
|
||||
this.tabPageAtari7800.Controls.Add(this.Atari7800SavestatesDescription);
|
||||
this.tabPageAtari7800.Controls.Add(this.Atari7800ScreenshotsDescription);
|
||||
this.tabPageAtari7800.Controls.Add(this.Atari7800ROMsDescription);
|
||||
this.tabPageAtari7800.Controls.Add(this.Atari7800BaseBox);
|
||||
this.tabPageAtari7800.Controls.Add(this.Atari7800BrowseFirmwares);
|
||||
this.tabPageAtari7800.Controls.Add(this.Atari7800FirmwaresBox);
|
||||
this.tabPageAtari7800.Controls.Add(this.BrowseAtari7800Base);
|
||||
this.tabPageAtari7800.Controls.Add(this.Atari7800ROMsBox);
|
||||
this.tabPageAtari7800.Controls.Add(this.Atari7800CheatsBox);
|
||||
|
@ -3047,17 +2887,35 @@
|
|||
this.tabPageAtari7800.Text = "A. 7800";
|
||||
this.tabPageAtari7800.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// Atari7800FirmwaresDescription
|
||||
// Atari7800SaveRAMsDescription
|
||||
//
|
||||
this.Atari7800FirmwaresDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.Atari7800FirmwaresDescription.AutoSize = true;
|
||||
this.Atari7800FirmwaresDescription.Location = new System.Drawing.Point(474, 213);
|
||||
this.Atari7800FirmwaresDescription.Name = "Atari7800FirmwaresDescription";
|
||||
this.Atari7800FirmwaresDescription.Size = new System.Drawing.Size(54, 13);
|
||||
this.Atari7800FirmwaresDescription.TabIndex = 98;
|
||||
this.Atari7800FirmwaresDescription.TabStop = true;
|
||||
this.Atari7800FirmwaresDescription.Text = "Firmwares";
|
||||
this.Atari7800FirmwaresDescription.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Atari78FirmwaresDescription_LinkClicked);
|
||||
this.Atari7800SaveRAMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.Atari7800SaveRAMsDescription.AutoSize = true;
|
||||
this.Atari7800SaveRAMsDescription.Location = new System.Drawing.Point(474, 123);
|
||||
this.Atari7800SaveRAMsDescription.Name = "Atari7800SaveRAMsDescription";
|
||||
this.Atari7800SaveRAMsDescription.Size = new System.Drawing.Size(59, 13);
|
||||
this.Atari7800SaveRAMsDescription.TabIndex = 101;
|
||||
this.Atari7800SaveRAMsDescription.Text = "Save RAM";
|
||||
//
|
||||
// BrowseAtari7800SaveRAM
|
||||
//
|
||||
this.BrowseAtari7800SaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.BrowseAtari7800SaveRAM.Image = ((System.Drawing.Image)(resources.GetObject("BrowseAtari7800SaveRAM.Image")));
|
||||
this.BrowseAtari7800SaveRAM.Location = new System.Drawing.Point(442, 119);
|
||||
this.BrowseAtari7800SaveRAM.Name = "BrowseAtari7800SaveRAM";
|
||||
this.BrowseAtari7800SaveRAM.Size = new System.Drawing.Size(26, 23);
|
||||
this.BrowseAtari7800SaveRAM.TabIndex = 100;
|
||||
this.BrowseAtari7800SaveRAM.UseVisualStyleBackColor = true;
|
||||
this.BrowseAtari7800SaveRAM.Click += new System.EventHandler(this.BrowseAtari7800SaveRAM_Click);
|
||||
//
|
||||
// Atari7800SaveRAMBox
|
||||
//
|
||||
this.Atari7800SaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.Atari7800SaveRAMBox.Location = new System.Drawing.Point(13, 119);
|
||||
this.Atari7800SaveRAMBox.Name = "Atari7800SaveRAMBox";
|
||||
this.Atari7800SaveRAMBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.Atari7800SaveRAMBox.TabIndex = 99;
|
||||
//
|
||||
// Atari7800BaseDescription
|
||||
//
|
||||
|
@ -3118,27 +2976,6 @@
|
|||
this.Atari7800BaseBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.Atari7800BaseBox.TabIndex = 42;
|
||||
//
|
||||
// Atari7800BrowseFirmwares
|
||||
//
|
||||
this.Atari7800BrowseFirmwares.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.Atari7800BrowseFirmwares.Image = ((System.Drawing.Image)(resources.GetObject("Atari7800BrowseFirmwares.Image")));
|
||||
this.Atari7800BrowseFirmwares.Location = new System.Drawing.Point(442, 209);
|
||||
this.Atari7800BrowseFirmwares.Name = "Atari7800BrowseFirmwares";
|
||||
this.Atari7800BrowseFirmwares.Size = new System.Drawing.Size(26, 23);
|
||||
this.Atari7800BrowseFirmwares.TabIndex = 53;
|
||||
this.Atari7800BrowseFirmwares.UseVisualStyleBackColor = true;
|
||||
this.Atari7800BrowseFirmwares.Click += new System.EventHandler(this.Atari7800BrowseFirmwares_Click);
|
||||
//
|
||||
// Atari7800FirmwaresBox
|
||||
//
|
||||
this.Atari7800FirmwaresBox.AcceptsTab = true;
|
||||
this.Atari7800FirmwaresBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.Atari7800FirmwaresBox.Location = new System.Drawing.Point(13, 209);
|
||||
this.Atari7800FirmwaresBox.Name = "Atari7800FirmwaresBox";
|
||||
this.Atari7800FirmwaresBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.Atari7800FirmwaresBox.TabIndex = 52;
|
||||
//
|
||||
// BrowseAtari7800Base
|
||||
//
|
||||
this.BrowseAtari7800Base.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
|
@ -3233,12 +3070,6 @@
|
|||
// tabPageIntellivision
|
||||
//
|
||||
this.tabPageIntellivision.Controls.Add(this.INTVBaseBox);
|
||||
this.tabPageIntellivision.Controls.Add(this.INTVGROMDescription);
|
||||
this.tabPageIntellivision.Controls.Add(this.INTVBroseGROM);
|
||||
this.tabPageIntellivision.Controls.Add(this.INTVGROMBox);
|
||||
this.tabPageIntellivision.Controls.Add(this.INTVEROMDescription);
|
||||
this.tabPageIntellivision.Controls.Add(this.INTVBrowseEROM);
|
||||
this.tabPageIntellivision.Controls.Add(this.INTVEROMBox);
|
||||
this.tabPageIntellivision.Controls.Add(this.INTVCheatsDescription);
|
||||
this.tabPageIntellivision.Controls.Add(this.INTVBrowseCheats);
|
||||
this.tabPageIntellivision.Controls.Add(this.INTVCheatsBox);
|
||||
|
@ -3273,66 +3104,6 @@
|
|||
this.INTVBaseBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.INTVBaseBox.TabIndex = 98;
|
||||
//
|
||||
// INTVGROMDescription
|
||||
//
|
||||
this.INTVGROMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.INTVGROMDescription.AutoSize = true;
|
||||
this.INTVGROMDescription.Location = new System.Drawing.Point(474, 243);
|
||||
this.INTVGROMDescription.Name = "INTVGROMDescription";
|
||||
this.INTVGROMDescription.Size = new System.Drawing.Size(40, 13);
|
||||
this.INTVGROMDescription.TabIndex = 115;
|
||||
this.INTVGROMDescription.Text = "GROM";
|
||||
//
|
||||
// INTVBroseGROM
|
||||
//
|
||||
this.INTVBroseGROM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.INTVBroseGROM.Image = ((System.Drawing.Image)(resources.GetObject("INTVBroseGROM.Image")));
|
||||
this.INTVBroseGROM.Location = new System.Drawing.Point(442, 239);
|
||||
this.INTVBroseGROM.Name = "INTVBroseGROM";
|
||||
this.INTVBroseGROM.Size = new System.Drawing.Size(26, 23);
|
||||
this.INTVBroseGROM.TabIndex = 114;
|
||||
this.INTVBroseGROM.UseVisualStyleBackColor = true;
|
||||
this.INTVBroseGROM.Click += new System.EventHandler(this.INTVBroseGROM_Click);
|
||||
//
|
||||
// INTVGROMBox
|
||||
//
|
||||
this.INTVGROMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.INTVGROMBox.Location = new System.Drawing.Point(13, 239);
|
||||
this.INTVGROMBox.Name = "INTVGROMBox";
|
||||
this.INTVGROMBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.INTVGROMBox.TabIndex = 113;
|
||||
//
|
||||
// INTVEROMDescription
|
||||
//
|
||||
this.INTVEROMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.INTVEROMDescription.AutoSize = true;
|
||||
this.INTVEROMDescription.Location = new System.Drawing.Point(474, 213);
|
||||
this.INTVEROMDescription.Name = "INTVEROMDescription";
|
||||
this.INTVEROMDescription.Size = new System.Drawing.Size(39, 13);
|
||||
this.INTVEROMDescription.TabIndex = 112;
|
||||
this.INTVEROMDescription.Text = "EROM";
|
||||
//
|
||||
// INTVBrowseEROM
|
||||
//
|
||||
this.INTVBrowseEROM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.INTVBrowseEROM.Image = ((System.Drawing.Image)(resources.GetObject("INTVBrowseEROM.Image")));
|
||||
this.INTVBrowseEROM.Location = new System.Drawing.Point(442, 209);
|
||||
this.INTVBrowseEROM.Name = "INTVBrowseEROM";
|
||||
this.INTVBrowseEROM.Size = new System.Drawing.Size(26, 23);
|
||||
this.INTVBrowseEROM.TabIndex = 111;
|
||||
this.INTVBrowseEROM.UseVisualStyleBackColor = true;
|
||||
this.INTVBrowseEROM.Click += new System.EventHandler(this.INTVBrowseEROM_Click);
|
||||
//
|
||||
// INTVEROMBox
|
||||
//
|
||||
this.INTVEROMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.INTVEROMBox.Location = new System.Drawing.Point(13, 209);
|
||||
this.INTVEROMBox.Name = "INTVEROMBox";
|
||||
this.INTVEROMBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.INTVEROMBox.TabIndex = 110;
|
||||
//
|
||||
// INTVCheatsDescription
|
||||
//
|
||||
this.INTVCheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
|
@ -3510,9 +3281,6 @@
|
|||
// tabPageColeco
|
||||
//
|
||||
this.tabPageColeco.Controls.Add(this.COLBaseBox);
|
||||
this.tabPageColeco.Controls.Add(this.COLBiosDescription);
|
||||
this.tabPageColeco.Controls.Add(this.COLBrowseBios);
|
||||
this.tabPageColeco.Controls.Add(this.COLBiosBox);
|
||||
this.tabPageColeco.Controls.Add(this.COLCheatsDescription);
|
||||
this.tabPageColeco.Controls.Add(this.COLBrowseCheats);
|
||||
this.tabPageColeco.Controls.Add(this.COLCheatsBox);
|
||||
|
@ -3529,7 +3297,7 @@
|
|||
this.tabPageColeco.Controls.Add(this.COLBrowseROMs);
|
||||
this.tabPageColeco.Location = new System.Drawing.Point(4, 40);
|
||||
this.tabPageColeco.Name = "tabPageColeco";
|
||||
this.tabPageColeco.Size = new System.Drawing.Size(566, 257);
|
||||
this.tabPageColeco.Size = new System.Drawing.Size(566, 278);
|
||||
this.tabPageColeco.TabIndex = 13;
|
||||
this.tabPageColeco.Text = "Col. V.";
|
||||
this.tabPageColeco.UseVisualStyleBackColor = true;
|
||||
|
@ -3543,36 +3311,6 @@
|
|||
this.COLBaseBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.COLBaseBox.TabIndex = 98;
|
||||
//
|
||||
// COLBiosDescription
|
||||
//
|
||||
this.COLBiosDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.COLBiosDescription.AutoSize = true;
|
||||
this.COLBiosDescription.Location = new System.Drawing.Point(474, 183);
|
||||
this.COLBiosDescription.Name = "COLBiosDescription";
|
||||
this.COLBiosDescription.Size = new System.Drawing.Size(32, 13);
|
||||
this.COLBiosDescription.TabIndex = 112;
|
||||
this.COLBiosDescription.Text = "BIOS";
|
||||
//
|
||||
// COLBrowseBios
|
||||
//
|
||||
this.COLBrowseBios.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.COLBrowseBios.Image = ((System.Drawing.Image)(resources.GetObject("COLBrowseBios.Image")));
|
||||
this.COLBrowseBios.Location = new System.Drawing.Point(442, 179);
|
||||
this.COLBrowseBios.Name = "COLBrowseBios";
|
||||
this.COLBrowseBios.Size = new System.Drawing.Size(26, 23);
|
||||
this.COLBrowseBios.TabIndex = 111;
|
||||
this.COLBrowseBios.UseVisualStyleBackColor = true;
|
||||
this.COLBrowseBios.Click += new System.EventHandler(this.COLBrowseBios_Click);
|
||||
//
|
||||
// COLBiosBox
|
||||
//
|
||||
this.COLBiosBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.COLBiosBox.Location = new System.Drawing.Point(13, 179);
|
||||
this.COLBiosBox.Name = "COLBiosBox";
|
||||
this.COLBiosBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.COLBiosBox.TabIndex = 110;
|
||||
//
|
||||
// COLCheatsDescription
|
||||
//
|
||||
this.COLCheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
|
@ -3719,9 +3457,6 @@
|
|||
//
|
||||
// tabPageC64
|
||||
//
|
||||
this.tabPageC64.Controls.Add(this.C64FirmwaresDescription);
|
||||
this.tabPageC64.Controls.Add(this.C64BrowseFirmwares);
|
||||
this.tabPageC64.Controls.Add(this.C64FirmwaresBox);
|
||||
this.tabPageC64.Controls.Add(this.C64CheatsDescription);
|
||||
this.tabPageC64.Controls.Add(this.C64BrowseCheats);
|
||||
this.tabPageC64.Controls.Add(this.C64CheatsBox);
|
||||
|
@ -3739,42 +3474,11 @@
|
|||
this.tabPageC64.Controls.Add(this.C64BaseBox);
|
||||
this.tabPageC64.Location = new System.Drawing.Point(4, 40);
|
||||
this.tabPageC64.Name = "tabPageC64";
|
||||
this.tabPageC64.Size = new System.Drawing.Size(566, 257);
|
||||
this.tabPageC64.Size = new System.Drawing.Size(566, 278);
|
||||
this.tabPageC64.TabIndex = 12;
|
||||
this.tabPageC64.Text = "C64";
|
||||
this.tabPageC64.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// C64FirmwaresDescription
|
||||
//
|
||||
this.C64FirmwaresDescription.AutoSize = true;
|
||||
this.C64FirmwaresDescription.Location = new System.Drawing.Point(474, 183);
|
||||
this.C64FirmwaresDescription.Name = "C64FirmwaresDescription";
|
||||
this.C64FirmwaresDescription.Size = new System.Drawing.Size(54, 13);
|
||||
this.C64FirmwaresDescription.TabIndex = 97;
|
||||
this.C64FirmwaresDescription.TabStop = true;
|
||||
this.C64FirmwaresDescription.Text = "Firmwares";
|
||||
this.C64FirmwaresDescription.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.C64FirmwaresDescription_LinkClicked);
|
||||
//
|
||||
// C64BrowseFirmwares
|
||||
//
|
||||
this.C64BrowseFirmwares.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.C64BrowseFirmwares.Image = ((System.Drawing.Image)(resources.GetObject("C64BrowseFirmwares.Image")));
|
||||
this.C64BrowseFirmwares.Location = new System.Drawing.Point(442, 179);
|
||||
this.C64BrowseFirmwares.Name = "C64BrowseFirmwares";
|
||||
this.C64BrowseFirmwares.Size = new System.Drawing.Size(26, 23);
|
||||
this.C64BrowseFirmwares.TabIndex = 95;
|
||||
this.C64BrowseFirmwares.UseVisualStyleBackColor = true;
|
||||
this.C64BrowseFirmwares.Click += new System.EventHandler(this.C64BrowseFirmwares_Click);
|
||||
//
|
||||
// C64FirmwaresBox
|
||||
//
|
||||
this.C64FirmwaresBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.C64FirmwaresBox.Location = new System.Drawing.Point(13, 179);
|
||||
this.C64FirmwaresBox.Name = "C64FirmwaresBox";
|
||||
this.C64FirmwaresBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.C64FirmwaresBox.TabIndex = 94;
|
||||
//
|
||||
// C64CheatsDescription
|
||||
//
|
||||
this.C64CheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
|
@ -3927,6 +3631,9 @@
|
|||
//
|
||||
// tabPageTools
|
||||
//
|
||||
this.tabPageTools.Controls.Add(this.labelFirmware);
|
||||
this.tabPageTools.Controls.Add(this.buttonFirmware);
|
||||
this.tabPageTools.Controls.Add(this.textBoxFirmware);
|
||||
this.tabPageTools.Controls.Add(this.LogDescription);
|
||||
this.tabPageTools.Controls.Add(this.BrowseLog);
|
||||
this.tabPageTools.Controls.Add(this.LogBox);
|
||||
|
@ -3947,7 +3654,7 @@
|
|||
this.tabPageTools.Controls.Add(this.MoviesDescription);
|
||||
this.tabPageTools.Location = new System.Drawing.Point(4, 40);
|
||||
this.tabPageTools.Name = "tabPageTools";
|
||||
this.tabPageTools.Size = new System.Drawing.Size(566, 257);
|
||||
this.tabPageTools.Size = new System.Drawing.Size(566, 278);
|
||||
this.tabPageTools.TabIndex = 6;
|
||||
this.tabPageTools.Text = "Tools";
|
||||
this.tabPageTools.UseVisualStyleBackColor = true;
|
||||
|
@ -4085,35 +3792,36 @@
|
|||
this.label1.TabIndex = 204;
|
||||
this.label1.Text = "Special Commands";
|
||||
//
|
||||
// Atari7800SaveRAMsDescription
|
||||
// labelFirmware
|
||||
//
|
||||
this.Atari7800SaveRAMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.Atari7800SaveRAMsDescription.AutoSize = true;
|
||||
this.Atari7800SaveRAMsDescription.Location = new System.Drawing.Point(474, 123);
|
||||
this.Atari7800SaveRAMsDescription.Name = "Atari7800SaveRAMsDescription";
|
||||
this.Atari7800SaveRAMsDescription.Size = new System.Drawing.Size(59, 13);
|
||||
this.Atari7800SaveRAMsDescription.TabIndex = 101;
|
||||
this.Atari7800SaveRAMsDescription.Text = "Save RAM";
|
||||
this.labelFirmware.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.labelFirmware.AutoSize = true;
|
||||
this.labelFirmware.Location = new System.Drawing.Point(474, 205);
|
||||
this.labelFirmware.Name = "labelFirmware";
|
||||
this.labelFirmware.Size = new System.Drawing.Size(49, 13);
|
||||
this.labelFirmware.TabIndex = 151;
|
||||
this.labelFirmware.Text = "Firmware";
|
||||
//
|
||||
// BrowseAtari7800SaveRAM
|
||||
// buttonFirmware
|
||||
//
|
||||
this.BrowseAtari7800SaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.BrowseAtari7800SaveRAM.Image = ((System.Drawing.Image)(resources.GetObject("BrowseAtari7800SaveRAM.Image")));
|
||||
this.BrowseAtari7800SaveRAM.Location = new System.Drawing.Point(442, 119);
|
||||
this.BrowseAtari7800SaveRAM.Name = "BrowseAtari7800SaveRAM";
|
||||
this.BrowseAtari7800SaveRAM.Size = new System.Drawing.Size(26, 23);
|
||||
this.BrowseAtari7800SaveRAM.TabIndex = 100;
|
||||
this.BrowseAtari7800SaveRAM.UseVisualStyleBackColor = true;
|
||||
this.BrowseAtari7800SaveRAM.Click += new System.EventHandler(this.BrowseAtari7800SaveRAM_Click);
|
||||
this.buttonFirmware.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.buttonFirmware.Image = ((System.Drawing.Image)(resources.GetObject("buttonFirmware.Image")));
|
||||
this.buttonFirmware.Location = new System.Drawing.Point(442, 201);
|
||||
this.buttonFirmware.Name = "buttonFirmware";
|
||||
this.buttonFirmware.Size = new System.Drawing.Size(26, 23);
|
||||
this.buttonFirmware.TabIndex = 150;
|
||||
this.buttonFirmware.UseVisualStyleBackColor = true;
|
||||
this.buttonFirmware.Click += new System.EventHandler(this.buttonFirmware_Click);
|
||||
//
|
||||
// Atari7800SaveRAMBox
|
||||
// textBoxFirmware
|
||||
//
|
||||
this.Atari7800SaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
this.textBoxFirmware.AcceptsReturn = true;
|
||||
this.textBoxFirmware.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.Atari7800SaveRAMBox.Location = new System.Drawing.Point(13, 119);
|
||||
this.Atari7800SaveRAMBox.Name = "Atari7800SaveRAMBox";
|
||||
this.Atari7800SaveRAMBox.Size = new System.Drawing.Size(421, 20);
|
||||
this.Atari7800SaveRAMBox.TabIndex = 99;
|
||||
this.textBoxFirmware.Location = new System.Drawing.Point(13, 201);
|
||||
this.textBoxFirmware.Name = "textBoxFirmware";
|
||||
this.textBoxFirmware.Size = new System.Drawing.Size(421, 20);
|
||||
this.textBoxFirmware.TabIndex = 149;
|
||||
//
|
||||
// PathConfig
|
||||
//
|
||||
|
@ -4353,9 +4061,6 @@
|
|||
private System.Windows.Forms.Label NESPaletteDescription;
|
||||
private System.Windows.Forms.Button NESBrowsePalette;
|
||||
private System.Windows.Forms.TextBox NESPaletteBox;
|
||||
private System.Windows.Forms.Label PCEBiosDescription;
|
||||
private System.Windows.Forms.Button PCEBrowseBios;
|
||||
private System.Windows.Forms.TextBox PCEBiosBox;
|
||||
private System.Windows.Forms.TabPage tabPageAtari2600;
|
||||
private System.Windows.Forms.Label Atari2600CheatsDescription;
|
||||
private System.Windows.Forms.Button Atari2600BrowseCheats;
|
||||
|
@ -4373,12 +4078,6 @@
|
|||
private System.Windows.Forms.Label Atari2600ROMsDescription;
|
||||
private System.Windows.Forms.Button Atari2600BrowseROMs;
|
||||
private System.Windows.Forms.TabPage tabPageIntellivision;
|
||||
private System.Windows.Forms.Label INTVGROMDescription;
|
||||
private System.Windows.Forms.Button INTVBroseGROM;
|
||||
private System.Windows.Forms.TextBox INTVGROMBox;
|
||||
private System.Windows.Forms.Label INTVEROMDescription;
|
||||
private System.Windows.Forms.Button INTVBrowseEROM;
|
||||
private System.Windows.Forms.TextBox INTVEROMBox;
|
||||
private System.Windows.Forms.Label INTVCheatsDescription;
|
||||
private System.Windows.Forms.Button INTVBrowseCheats;
|
||||
private System.Windows.Forms.TextBox INTVCheatsBox;
|
||||
|
@ -4422,8 +4121,6 @@
|
|||
private System.Windows.Forms.Label SNESROMsDescription;
|
||||
private System.Windows.Forms.TextBox SNESSaveRAMBox;
|
||||
private System.Windows.Forms.Button SNESBrowseROMs;
|
||||
private System.Windows.Forms.Button SNESBrowseFirmwares;
|
||||
private System.Windows.Forms.TextBox SNESFirmwaresBox;
|
||||
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
|
||||
private System.Windows.Forms.Label LogDescription;
|
||||
private System.Windows.Forms.Button BrowseLog;
|
||||
|
@ -4431,10 +4128,6 @@
|
|||
private System.Windows.Forms.Button button1;
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.ToolTip toolTip1;
|
||||
private System.Windows.Forms.Label NESFDSBiosDescription;
|
||||
private System.Windows.Forms.Button NESBrowseFDSBios;
|
||||
private System.Windows.Forms.TextBox NESFDSBiosBox;
|
||||
private System.Windows.Forms.LinkLabel SNESFirmwaresDescription;
|
||||
private System.Windows.Forms.TabPage tabPageC64;
|
||||
private System.Windows.Forms.TextBox C64SavestatesBox;
|
||||
private System.Windows.Forms.TextBox C64ROMsBox;
|
||||
|
@ -4451,14 +4144,8 @@
|
|||
private System.Windows.Forms.Label C64CheatsDescription;
|
||||
private System.Windows.Forms.Button C64BrowseCheats;
|
||||
private System.Windows.Forms.TextBox C64CheatsBox;
|
||||
private System.Windows.Forms.Button C64BrowseFirmwares;
|
||||
private System.Windows.Forms.TextBox C64FirmwaresBox;
|
||||
private System.Windows.Forms.LinkLabel C64FirmwaresDescription;
|
||||
private System.Windows.Forms.TabPage tabPageColeco;
|
||||
private System.Windows.Forms.TextBox COLBaseBox;
|
||||
private System.Windows.Forms.Label COLBiosDescription;
|
||||
private System.Windows.Forms.Button COLBrowseBios;
|
||||
private System.Windows.Forms.TextBox COLBiosBox;
|
||||
private System.Windows.Forms.Label COLCheatsDescription;
|
||||
private System.Windows.Forms.Button COLBrowseCheats;
|
||||
private System.Windows.Forms.TextBox COLCheatsBox;
|
||||
|
@ -4475,9 +4162,6 @@
|
|||
private System.Windows.Forms.Button COLBrowseROMs;
|
||||
private System.Windows.Forms.TabPage tabPageGBA;
|
||||
private System.Windows.Forms.TextBox GBABaseBox;
|
||||
private System.Windows.Forms.TextBox GBAFirmwaresBox;
|
||||
private System.Windows.Forms.Button GBABrowseFirmwares;
|
||||
private System.Windows.Forms.Label GBAFirmwaresDescription;
|
||||
private System.Windows.Forms.Label GBACheatsDescription;
|
||||
private System.Windows.Forms.Button GBABrowseCheats;
|
||||
private System.Windows.Forms.TextBox GBACheatsBox;
|
||||
|
@ -4497,8 +4181,6 @@
|
|||
private System.Windows.Forms.TextBox GBASaveRAMBox;
|
||||
private System.Windows.Forms.TabPage tabPageAtari7800;
|
||||
private System.Windows.Forms.TextBox Atari7800BaseBox;
|
||||
private System.Windows.Forms.Button Atari7800BrowseFirmwares;
|
||||
private System.Windows.Forms.TextBox Atari7800FirmwaresBox;
|
||||
private System.Windows.Forms.Button BrowseAtari7800Base;
|
||||
private System.Windows.Forms.TextBox Atari7800ROMsBox;
|
||||
private System.Windows.Forms.TextBox Atari7800CheatsBox;
|
||||
|
@ -4513,9 +4195,11 @@
|
|||
private System.Windows.Forms.Label Atari7800SavestatesDescription;
|
||||
private System.Windows.Forms.Label Atari7800ScreenshotsDescription;
|
||||
private System.Windows.Forms.Label Atari7800ROMsDescription;
|
||||
private System.Windows.Forms.LinkLabel Atari7800FirmwaresDescription;
|
||||
private System.Windows.Forms.Label Atari7800SaveRAMsDescription;
|
||||
private System.Windows.Forms.Button BrowseAtari7800SaveRAM;
|
||||
private System.Windows.Forms.TextBox Atari7800SaveRAMBox;
|
||||
private System.Windows.Forms.Label labelFirmware;
|
||||
private System.Windows.Forms.Button buttonFirmware;
|
||||
private System.Windows.Forms.TextBox textBoxFirmware;
|
||||
}
|
||||
}
|
|
@ -56,9 +56,9 @@ namespace BizHawk.MultiClient
|
|||
INTVSaveRAMBox.Text = Global.Config.PathINTVSaveRAM; ;
|
||||
INTVScreenshotsBox.Text = Global.Config.PathINTVScreenshots;
|
||||
INTVCheatsBox.Text = Global.Config.PathINTVCheats;
|
||||
INTVEROMBox.Text = Global.Config.PathINTVEROM;
|
||||
INTVGROMBox.Text = Global.Config.PathINTVGROM;
|
||||
|
||||
//INTVEROMBox.Text = Global.Config.PathINTVEROM;
|
||||
//INTVGROMBox.Text = Global.Config.PathINTVGROM;
|
||||
|
||||
NESBaseBox.Text = Global.Config.BaseNES;
|
||||
NESROMsBox.Text = Global.Config.PathNESROMs;
|
||||
NESSavestatesBox.Text = Global.Config.PathNESSavestates;
|
||||
|
@ -66,7 +66,7 @@ namespace BizHawk.MultiClient
|
|||
NESScreenshotsBox.Text = Global.Config.PathNESScreenshots;
|
||||
NESCheatsBox.Text = Global.Config.PathNESCheats;
|
||||
NESPaletteBox.Text = Global.Config.PathNESPalette;
|
||||
NESFDSBiosBox.Text = Global.Config.PathFDSBios;
|
||||
//NESFDSBiosBox.Text = Global.Config.PathFDSBios;
|
||||
|
||||
SNESBaseBox.Text = Global.Config.BaseSNES;
|
||||
SNESROMsBox.Text = Global.Config.PathSNESROMs;
|
||||
|
@ -74,7 +74,7 @@ namespace BizHawk.MultiClient
|
|||
SNESSaveRAMBox.Text = Global.Config.PathSNESSaveRAM;
|
||||
SNESScreenshotsBox.Text = Global.Config.PathSNESScreenshots;
|
||||
SNESCheatsBox.Text = Global.Config.PathSNESCheats;
|
||||
SNESFirmwaresBox.Text = Global.Config.PathSNESFirmwares;
|
||||
//SNESFirmwaresBox.Text = Global.Config.PathSNESFirmwares;
|
||||
|
||||
Sega8BaseBox.Text = Global.Config.BaseSMS;
|
||||
Sega8ROMsBox.Text = Global.Config.PathSMSROMs;
|
||||
|
@ -103,7 +103,7 @@ namespace BizHawk.MultiClient
|
|||
PCESaveRAMBox.Text = Global.Config.PathPCESaveRAM;
|
||||
PCEScreenshotsBox.Text = Global.Config.PathPCEScreenshots;
|
||||
PCECheatsBox.Text = Global.Config.PathPCECheats;
|
||||
PCEBiosBox.Text = Global.Config.PathPCEBios;
|
||||
//PCEBiosBox.Text = Global.Config.PathPCEBios;
|
||||
|
||||
GenesisBaseBox.Text = Global.Config.BaseGenesis;
|
||||
GenesisROMsBox.Text = Global.Config.PathGenesisROMs;
|
||||
|
@ -126,7 +126,7 @@ namespace BizHawk.MultiClient
|
|||
GBASaveRAMBox.Text = Global.Config.PathGBASaveRAM;
|
||||
GBAScreenshotsBox.Text = Global.Config.PathGBAScreenshots;
|
||||
GBACheatsBox.Text = Global.Config.PathGBACheats;
|
||||
GBAFirmwaresBox.Text = Global.Config.PathGBABIOS;
|
||||
//GBAFirmwaresBox.Text = Global.Config.PathGBABIOS;
|
||||
|
||||
TI83BaseBox.Text = Global.Config.BaseTI83;
|
||||
TI83ROMsBox.Text = Global.Config.PathTI83ROMs;
|
||||
|
@ -147,21 +147,21 @@ namespace BizHawk.MultiClient
|
|||
Atari7800SaveRAMBox.Text = Global.Config.PathAtari7800SaveRAM;
|
||||
Atari7800ScreenshotsBox.Text = Global.Config.PathAtari7800Screenshots;
|
||||
Atari7800CheatsBox.Text = Global.Config.PathAtari7800Cheats;
|
||||
Atari7800FirmwaresBox.Text = Global.Config.PathAtari7800Firmwares;
|
||||
//Atari7800FirmwaresBox.Text = Global.Config.PathAtari7800Firmwares;
|
||||
|
||||
C64BaseBox.Text = Global.Config.BaseC64;
|
||||
C64ROMsBox.Text = Global.Config.PathC64ROMs;
|
||||
C64SavestatesBox.Text = Global.Config.PathC64Savestates;
|
||||
C64ScreenshotsBox.Text = Global.Config.PathC64Screenshots;
|
||||
C64CheatsBox.Text = Global.Config.PathC64Cheats;
|
||||
C64FirmwaresBox.Text = Global.Config.PathC64Firmwares;
|
||||
//C64FirmwaresBox.Text = Global.Config.PathC64Firmwares;
|
||||
|
||||
COLBaseBox.Text = Global.Config.BaseCOL;
|
||||
COLROMsBox.Text = Global.Config.PathCOLROMs;
|
||||
COLSavestatesBox.Text = Global.Config.PathCOLSavestates;
|
||||
COLScreenshotsBox.Text = Global.Config.PathCOLScreenshots;
|
||||
COLCheatsBox.Text = Global.Config.PathCOLCheats;
|
||||
COLBiosBox.Text = Global.Config.PathCOLBios;
|
||||
//COLBiosBox.Text = Global.Config.PathCOLBios;
|
||||
|
||||
MoviesBox.Text = Global.Config.MoviesPath;
|
||||
MovieBackupsBox.Text = Global.Config.MoviesBackupPath;
|
||||
|
@ -169,6 +169,7 @@ namespace BizHawk.MultiClient
|
|||
WatchBox.Text = Global.Config.WatchPath;
|
||||
AVIBox.Text = Global.Config.AVIPath;
|
||||
LogBox.Text = Global.Config.LogPath;
|
||||
textBoxFirmware.Text = Global.Config.FirmwaresPath;
|
||||
|
||||
SetTabByPlatform();
|
||||
|
||||
|
@ -250,8 +251,8 @@ namespace BizHawk.MultiClient
|
|||
Global.Config.PathINTVSavestates = INTVSavestatesBox.Text;
|
||||
Global.Config.PathINTVScreenshots = INTVScreenshotsBox.Text;
|
||||
Global.Config.PathINTVCheats = INTVCheatsBox.Text;
|
||||
Global.Config.PathINTVEROM = INTVEROMBox.Text;
|
||||
Global.Config.PathINTVGROM = INTVGROMBox.Text;
|
||||
//Global.Config.PathINTVEROM = INTVEROMBox.Text;
|
||||
//Global.Config.PathINTVGROM = INTVGROMBox.Text;
|
||||
|
||||
Global.Config.BaseNES = NESBaseBox.Text;
|
||||
Global.Config.PathNESROMs = NESROMsBox.Text;
|
||||
|
@ -260,7 +261,7 @@ namespace BizHawk.MultiClient
|
|||
Global.Config.PathNESScreenshots = NESScreenshotsBox.Text;
|
||||
Global.Config.PathNESCheats = NESCheatsBox.Text;
|
||||
Global.Config.PathNESPalette = NESPaletteBox.Text;
|
||||
Global.Config.PathFDSBios = NESFDSBiosBox.Text;
|
||||
//Global.Config.PathFDSBios = NESFDSBiosBox.Text;
|
||||
|
||||
Global.Config.BaseSNES = SNESBaseBox.Text;
|
||||
Global.Config.PathSNESROMs = SNESROMsBox.Text;
|
||||
|
@ -268,7 +269,7 @@ namespace BizHawk.MultiClient
|
|||
Global.Config.PathSNESSaveRAM = SNESSaveRAMBox.Text;
|
||||
Global.Config.PathSNESScreenshots = SNESScreenshotsBox.Text;
|
||||
Global.Config.PathSNESCheats = SNESCheatsBox.Text;
|
||||
Global.Config.PathSNESFirmwares = SNESFirmwaresBox.Text;
|
||||
//Global.Config.PathSNESFirmwares = SNESFirmwaresBox.Text;
|
||||
|
||||
Global.Config.BaseSMS = Sega8BaseBox.Text;
|
||||
Global.Config.PathSMSROMs = Sega8ROMsBox.Text;
|
||||
|
@ -319,7 +320,7 @@ namespace BizHawk.MultiClient
|
|||
Global.Config.PathGBASaveRAM = GBASaveRAMBox.Text;
|
||||
Global.Config.PathGBAScreenshots = GBAScreenshotsBox.Text;
|
||||
Global.Config.PathGBACheats = GBACheatsBox.Text;
|
||||
Global.Config.PathGBABIOS = GBAFirmwaresBox.Text;
|
||||
//Global.Config.PathGBABIOS = GBAFirmwaresBox.Text;
|
||||
|
||||
Global.Config.BaseTI83 = TI83BaseBox.Text;
|
||||
Global.Config.PathTI83ROMs = TI83ROMsBox.Text;
|
||||
|
@ -340,21 +341,21 @@ namespace BizHawk.MultiClient
|
|||
Global.Config.PathAtari7800SaveRAM = Atari7800SaveRAMBox.Text;
|
||||
Global.Config.PathAtari7800Screenshots = Atari7800ScreenshotsBox.Text;
|
||||
Global.Config.PathAtari7800Cheats = Atari7800CheatsBox.Text;
|
||||
Global.Config.PathAtari7800Firmwares = Atari7800FirmwaresBox.Text;
|
||||
//Global.Config.PathAtari7800Firmwares = Atari7800FirmwaresBox.Text;
|
||||
|
||||
Global.Config.BaseC64 = C64BaseBox.Text;
|
||||
Global.Config.PathC64ROMs = C64ROMsBox.Text;
|
||||
Global.Config.PathC64Savestates = C64SavestatesBox.Text;
|
||||
Global.Config.PathC64Screenshots = C64ScreenshotsBox.Text;
|
||||
Global.Config.PathC64Cheats = C64CheatsBox.Text;
|
||||
Global.Config.PathC64Firmwares = C64FirmwaresBox.Text;
|
||||
//Global.Config.PathC64Firmwares = C64FirmwaresBox.Text;
|
||||
|
||||
Global.Config.BaseCOL = COLBaseBox.Text;
|
||||
Global.Config.PathCOLROMs = COLROMsBox.Text;
|
||||
Global.Config.PathCOLSavestates = COLSavestatesBox.Text;
|
||||
Global.Config.PathCOLScreenshots = COLScreenshotsBox.Text;
|
||||
Global.Config.PathCOLCheats = COLCheatsBox.Text;
|
||||
Global.Config.PathCOLBios = COLBiosBox.Text;
|
||||
//Global.Config.PathCOLBios = COLBiosBox.Text;
|
||||
|
||||
Global.Config.MoviesPath = MoviesBox.Text;
|
||||
Global.Config.MoviesBackupPath = MovieBackupsBox.Text;
|
||||
|
@ -362,8 +363,9 @@ namespace BizHawk.MultiClient
|
|||
Global.Config.WatchPath = WatchBox.Text;
|
||||
Global.Config.AVIPath = AVIBox.Text;
|
||||
Global.Config.LogPath = LogBox.Text;
|
||||
Global.Config.FirmwaresPath = textBoxFirmware.Text;
|
||||
|
||||
Global.Config.PathPCEBios = PCEBiosBox.Text;
|
||||
//Global.Config.PathPCEBios = PCEBiosBox.Text;
|
||||
|
||||
BasePathBox.Focus();
|
||||
Global.MainForm.UpdateStatusSlots();
|
||||
|
@ -829,30 +831,30 @@ namespace BizHawk.MultiClient
|
|||
}
|
||||
|
||||
|
||||
private void INTVBrowseEROM_Click(object sender, EventArgs e)
|
||||
/*private void INTVBrowseEROM_Click(object sender, EventArgs e)
|
||||
{
|
||||
BrowseForBios(
|
||||
"Intellivision EROM (*.bin; *.int)|*.bin;*.int|All Files|*.*",
|
||||
Global.Config.PathINTVEROM, "INTV",
|
||||
INTVEROMBox);
|
||||
}
|
||||
}*/
|
||||
|
||||
private void INTVBroseGROM_Click(object sender, EventArgs e)
|
||||
/*private void INTVBroseGROM_Click(object sender, EventArgs e)
|
||||
{
|
||||
BrowseForBios(
|
||||
"Intellivision GROM (*.bin; *.int)|*.bin;*.int|All Files|*.*",
|
||||
Global.Config.PathINTVGROM, "INTV",
|
||||
INTVGROMBox);
|
||||
}
|
||||
}*/
|
||||
|
||||
|
||||
private void PCEBrowseBios_Click(object sender, EventArgs e)
|
||||
/*private void PCEBrowseBios_Click(object sender, EventArgs e)
|
||||
{
|
||||
BrowseForBios(
|
||||
"PCE CD BIOS (*.pce)|*.pce|All Files|*.*",
|
||||
Global.Config.PathPCEBios, "PCE",
|
||||
PCEBiosBox);
|
||||
}
|
||||
}*/
|
||||
|
||||
private void BrowseMovieBackups_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
@ -889,10 +891,10 @@ namespace BizHawk.MultiClient
|
|||
BrowseFolder(SNESCheatsBox, SNESCheatsDescription.Text, "SNES");
|
||||
}
|
||||
|
||||
private void SNESBrowseFirmwares_Click(object sender, EventArgs e)
|
||||
/*private void SNESBrowseFirmwares_Click(object sender, EventArgs e)
|
||||
{
|
||||
BrowseFolder(SNESFirmwaresBox, SNESFirmwaresDescription.Text);
|
||||
}
|
||||
}*/
|
||||
|
||||
private void BrowseLog_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
@ -909,13 +911,13 @@ namespace BizHawk.MultiClient
|
|||
BrowseFolder(SNESSaveRAMBox, SNESSaveRAMDescription.Text);
|
||||
}
|
||||
|
||||
private void NESBrowseFDSBios_Click(object sender, EventArgs e)
|
||||
/*private void NESBrowseFDSBios_Click(object sender, EventArgs e)
|
||||
{
|
||||
BrowseForBios(
|
||||
"ROM files (*.rom)|*.rom|All Files|*.*",
|
||||
Global.Config.PathFDSBios, "NES",
|
||||
NESFDSBiosBox);
|
||||
}
|
||||
}*/
|
||||
|
||||
private void SNESFirmwaresDescription_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
||||
{
|
||||
|
@ -947,10 +949,10 @@ namespace BizHawk.MultiClient
|
|||
BrowseFolder(C64CheatsBox, C64CheatsDescription.Text, "C64");
|
||||
}
|
||||
|
||||
private void C64BrowseFirmwares_Click(object sender, EventArgs e)
|
||||
/*private void C64BrowseFirmwares_Click(object sender, EventArgs e)
|
||||
{
|
||||
BrowseFolder(C64FirmwaresBox, C64FirmwaresDescription.Text, "C64");
|
||||
}
|
||||
}*/
|
||||
|
||||
private void C64FirmwaresDescription_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
||||
{
|
||||
|
@ -982,13 +984,13 @@ namespace BizHawk.MultiClient
|
|||
BrowseFolder(COLScreenshotsBox, COLScreenshotsDescription.Text, "Coleco");
|
||||
}
|
||||
|
||||
private void COLBrowseBios_Click(object sender, EventArgs e)
|
||||
/*private void COLBrowseBios_Click(object sender, EventArgs e)
|
||||
{
|
||||
BrowseForBios(
|
||||
"ROM files (*.bin)|*.bin|All Files|*.*",
|
||||
Global.Config.PathCOLBios, "Coleco",
|
||||
COLBiosBox);
|
||||
}
|
||||
}*/
|
||||
|
||||
private void GBABrowseBase_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
@ -1020,13 +1022,13 @@ namespace BizHawk.MultiClient
|
|||
BrowseFolder(GBACheatsBox, GBACheatsDescription.Text, "GBA");
|
||||
}
|
||||
|
||||
private void GBABrowseFirmwares_Click(object sender, EventArgs e)
|
||||
/*private void GBABrowseFirmwares_Click(object sender, EventArgs e)
|
||||
{
|
||||
BrowseForBios(
|
||||
"GBA BIOS (*.rom)|*.rom|All Files|*.*",
|
||||
Global.Config.PathGBABIOS, "GBA",
|
||||
GBAFirmwaresBox);
|
||||
}
|
||||
}*/
|
||||
|
||||
private void Atari78FirmwaresDescription_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
||||
{
|
||||
|
@ -1059,14 +1061,19 @@ namespace BizHawk.MultiClient
|
|||
BrowseFolder(Atari7800CheatsBox, Atari7800CheatsDescription.Text, "A78");
|
||||
}
|
||||
|
||||
private void Atari7800BrowseFirmwares_Click(object sender, EventArgs e)
|
||||
/*private void Atari7800BrowseFirmwares_Click(object sender, EventArgs e)
|
||||
{
|
||||
BrowseFolder(Atari7800FirmwaresBox, Atari7800FirmwaresDescription.Text, "A78");
|
||||
}
|
||||
}*/
|
||||
|
||||
private void BrowseAtari7800SaveRAM_Click(object sender, EventArgs e)
|
||||
{
|
||||
BrowseFolder(Atari7800SaveRAMBox, Atari7800SaveRAMsDescription.Text, "A78");
|
||||
}
|
||||
|
||||
private void buttonFirmware_Click(object sender, EventArgs e)
|
||||
{
|
||||
BrowseFolder(textBoxFirmware, labelFirmware.Text);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -337,7 +337,7 @@
|
|||
<metadata name="GGBrowseBase.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<data name="BrowseAtari7800SaveRAM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<data name="buttonFirmware.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
|
@ -355,7 +355,7 @@
|
|||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="Atari7800BrowseFirmwares.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>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
|
@ -373,61 +373,7 @@
|
|||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="BrowseAtari7800Savestates.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
CvYBwq9wAwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
|
||||
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
|
||||
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
|
||||
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
|
||||
JlOSm8RNeRwFshjR+XvwQrUmm+mvmuWTF8Uw/XHQG7Iq/whul8r4/qnEWNsQbq7LNvJQn0WDTsa9ynT0
|
||||
6hR0JVLKVde5lZdAsTIOVXassY1QWZLO5Pt8DLWHWiXUVylZGJLCcOpK3olrg/HQFwWvI+iq8eVKsEeF
|
||||
oFalMDGQCR/k3K9W0P5IvrTpzyu8CoQOb+bb3Jh57MTbCjsunj06IQr2CqV5Er69kTLclki9Ts7ioAR6
|
||||
QpcEXcFi8DTz7R7MtBxhsukQo3X7kIZZc8bFLNcwTKFImchodyx3tNl0PhOb9EWKgvPQGcDi85PMPj3O
|
||||
VPNhxuod+FJtS0faZvzdrHCwMbExClRZcfS0JHFXmwUDSfBSrPvCh9lWd6aeODHe4MiI3o6Pmt30yk2R
|
||||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="Atari7800BrowseCheats.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
CvYBwq9wAwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
|
||||
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
|
||||
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
|
||||
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
|
||||
JlOSm8RNeRwFshjR+XvwQrUmm+mvmuWTF8Uw/XHQG7Iq/whul8r4/qnEWNsQbq7LNvJQn0WDTsa9ynT0
|
||||
6hR0JVLKVde5lZdAsTIOVXassY1QWZLO5Pt8DLWHWiXUVylZGJLCcOpK3olrg/HQFwWvI+iq8eVKsEeF
|
||||
oFalMDGQCR/k3K9W0P5IvrTpzyu8CoQOb+bb3Jh57MTbCjsunj06IQr2CqV5Er69kTLclki9Ts7ioAR6
|
||||
QpcEXcFi8DTz7R7MtBxhsukQo3X7kIZZc8bFLNcwTKFImchodyx3tNl0PhOb9EWKgvPQGcDi85PMPj3O
|
||||
VPNhxuod+FJtS0faZvzdrHCwMbExClRZcfS0JHFXmwUDSfBSrPvCh9lWd6aeODHe4MiI3o6Pmt30yk2R
|
||||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="BrowseAtari7800Screenshots.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
CvYBwq9wAwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
|
||||
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
|
||||
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
|
||||
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
|
||||
JlOSm8RNeRwFshjR+XvwQrUmm+mvmuWTF8Uw/XHQG7Iq/whul8r4/qnEWNsQbq7LNvJQn0WDTsa9ynT0
|
||||
6hR0JVLKVde5lZdAsTIOVXassY1QWZLO5Pt8DLWHWiXUVylZGJLCcOpK3olrg/HQFwWvI+iq8eVKsEeF
|
||||
oFalMDGQCR/k3K9W0P5IvrTpzyu8CoQOb+bb3Jh57MTbCjsunj06IQr2CqV5Er69kTLclki9Ts7ioAR6
|
||||
QpcEXcFi8DTz7R7MtBxhsukQo3X7kIZZc8bFLNcwTKFImchodyx3tNl0PhOb9EWKgvPQGcDi85PMPj3O
|
||||
VPNhxuod+FJtS0faZvzdrHCwMbExClRZcfS0JHFXmwUDSfBSrPvCh9lWd6aeODHe4MiI3o6Pmt30yk2R
|
||||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="Atari7800BrowseROMs.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>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
|
@ -479,24 +425,6 @@
|
|||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="SNESBrowseFirmwares.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
CvYBwq9wAwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
|
||||
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
|
||||
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
|
||||
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
|
||||
JlOSm8RNeRwFshjR+XvwQrUmm+mvmuWTF8Uw/XHQG7Iq/whul8r4/qnEWNsQbq7LNvJQn0WDTsa9ynT0
|
||||
6hR0JVLKVde5lZdAsTIOVXassY1QWZLO5Pt8DLWHWiXUVylZGJLCcOpK3olrg/HQFwWvI+iq8eVKsEeF
|
||||
oFalMDGQCR/k3K9W0P5IvrTpzyu8CoQOb+bb3Jh57MTbCjsunj06IQr2CqV5Er69kTLclki9Ts7ioAR6
|
||||
QpcEXcFi8DTz7R7MtBxhsukQo3X7kIZZc8bFLNcwTKFImchodyx3tNl0PhOb9EWKgvPQGcDi85PMPj3O
|
||||
VPNhxuod+FJtS0faZvzdrHCwMbExClRZcfS0JHFXmwUDSfBSrPvCh9lWd6aeODHe4MiI3o6Pmt30yk2R
|
||||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="SNESBrowseCheats.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
@ -932,24 +860,6 @@
|
|||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="PCEBrowseBios.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
CvYBwq9wAwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
|
||||
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
|
||||
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
|
||||
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
|
||||
JlOSm8RNeRwFshjR+XvwQrUmm+mvmuWTF8Uw/XHQG7Iq/whul8r4/qnEWNsQbq7LNvJQn0WDTsa9ynT0
|
||||
6hR0JVLKVde5lZdAsTIOVXassY1QWZLO5Pt8DLWHWiXUVylZGJLCcOpK3olrg/HQFwWvI+iq8eVKsEeF
|
||||
oFalMDGQCR/k3K9W0P5IvrTpzyu8CoQOb+bb3Jh57MTbCjsunj06IQr2CqV5Er69kTLclki9Ts7ioAR6
|
||||
QpcEXcFi8DTz7R7MtBxhsukQo3X7kIZZc8bFLNcwTKFImchodyx3tNl0PhOb9EWKgvPQGcDi85PMPj3O
|
||||
VPNhxuod+FJtS0faZvzdrHCwMbExClRZcfS0JHFXmwUDSfBSrPvCh9lWd6aeODHe4MiI3o6Pmt30yk2R
|
||||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="PCEBrowseCheats.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
@ -1184,24 +1094,6 @@
|
|||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="GBABrowseFirmwares.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
CvYBwq9wAwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
|
||||
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
|
||||
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
|
||||
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
|
||||
JlOSm8RNeRwFshjR+XvwQrUmm+mvmuWTF8Uw/XHQG7Iq/whul8r4/qnEWNsQbq7LNvJQn0WDTsa9ynT0
|
||||
6hR0JVLKVde5lZdAsTIOVXassY1QWZLO5Pt8DLWHWiXUVylZGJLCcOpK3olrg/HQFwWvI+iq8eVKsEeF
|
||||
oFalMDGQCR/k3K9W0P5IvrTpzyu8CoQOb+bb3Jh57MTbCjsunj06IQr2CqV5Er69kTLclki9Ts7ioAR6
|
||||
QpcEXcFi8DTz7R7MtBxhsukQo3X7kIZZc8bFLNcwTKFImchodyx3tNl0PhOb9EWKgvPQGcDi85PMPj3O
|
||||
VPNhxuod+FJtS0faZvzdrHCwMbExClRZcfS0JHFXmwUDSfBSrPvCh9lWd6aeODHe4MiI3o6Pmt30yk2R
|
||||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="GBABrowseCheats.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
@ -1492,7 +1384,7 @@
|
|||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="INTVBroseGROM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<data name="BrowseAtari7800SaveRAM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
|
@ -1510,7 +1402,61 @@
|
|||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="INTVBrowseEROM.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<data name="BrowseAtari7800Savestates.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
CvYBwq9wAwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
|
||||
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
|
||||
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
|
||||
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
|
||||
JlOSm8RNeRwFshjR+XvwQrUmm+mvmuWTF8Uw/XHQG7Iq/whul8r4/qnEWNsQbq7LNvJQn0WDTsa9ynT0
|
||||
6hR0JVLKVde5lZdAsTIOVXassY1QWZLO5Pt8DLWHWiXUVylZGJLCcOpK3olrg/HQFwWvI+iq8eVKsEeF
|
||||
oFalMDGQCR/k3K9W0P5IvrTpzyu8CoQOb+bb3Jh57MTbCjsunj06IQr2CqV5Er69kTLclki9Ts7ioAR6
|
||||
QpcEXcFi8DTz7R7MtBxhsukQo3X7kIZZc8bFLNcwTKFImchodyx3tNl0PhOb9EWKgvPQGcDi85PMPj3O
|
||||
VPNhxuod+FJtS0faZvzdrHCwMbExClRZcfS0JHFXmwUDSfBSrPvCh9lWd6aeODHe4MiI3o6Pmt30yk2R
|
||||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="Atari7800BrowseCheats.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
CvYBwq9wAwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
|
||||
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
|
||||
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
|
||||
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
|
||||
JlOSm8RNeRwFshjR+XvwQrUmm+mvmuWTF8Uw/XHQG7Iq/whul8r4/qnEWNsQbq7LNvJQn0WDTsa9ynT0
|
||||
6hR0JVLKVde5lZdAsTIOVXassY1QWZLO5Pt8DLWHWiXUVylZGJLCcOpK3olrg/HQFwWvI+iq8eVKsEeF
|
||||
oFalMDGQCR/k3K9W0P5IvrTpzyu8CoQOb+bb3Jh57MTbCjsunj06IQr2CqV5Er69kTLclki9Ts7ioAR6
|
||||
QpcEXcFi8DTz7R7MtBxhsukQo3X7kIZZc8bFLNcwTKFImchodyx3tNl0PhOb9EWKgvPQGcDi85PMPj3O
|
||||
VPNhxuod+FJtS0faZvzdrHCwMbExClRZcfS0JHFXmwUDSfBSrPvCh9lWd6aeODHe4MiI3o6Pmt30yk2R
|
||||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="BrowseAtari7800Screenshots.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
CvYBwq9wAwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
|
||||
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
|
||||
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
|
||||
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
|
||||
JlOSm8RNeRwFshjR+XvwQrUmm+mvmuWTF8Uw/XHQG7Iq/whul8r4/qnEWNsQbq7LNvJQn0WDTsa9ynT0
|
||||
6hR0JVLKVde5lZdAsTIOVXassY1QWZLO5Pt8DLWHWiXUVylZGJLCcOpK3olrg/HQFwWvI+iq8eVKsEeF
|
||||
oFalMDGQCR/k3K9W0P5IvrTpzyu8CoQOb+bb3Jh57MTbCjsunj06IQr2CqV5Er69kTLclki9Ts7ioAR6
|
||||
QpcEXcFi8DTz7R7MtBxhsukQo3X7kIZZc8bFLNcwTKFImchodyx3tNl0PhOb9EWKgvPQGcDi85PMPj3O
|
||||
VPNhxuod+FJtS0faZvzdrHCwMbExClRZcfS0JHFXmwUDSfBSrPvCh9lWd6aeODHe4MiI3o6Pmt30yk2R
|
||||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="Atari7800BrowseROMs.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
|
@ -1634,24 +1580,6 @@
|
|||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="COLBrowseBios.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
CvYBwq9wAwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
|
||||
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
|
||||
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
|
||||
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
|
||||
JlOSm8RNeRwFshjR+XvwQrUmm+mvmuWTF8Uw/XHQG7Iq/whul8r4/qnEWNsQbq7LNvJQn0WDTsa9ynT0
|
||||
6hR0JVLKVde5lZdAsTIOVXassY1QWZLO5Pt8DLWHWiXUVylZGJLCcOpK3olrg/HQFwWvI+iq8eVKsEeF
|
||||
oFalMDGQCR/k3K9W0P5IvrTpzyu8CoQOb+bb3Jh57MTbCjsunj06IQr2CqV5Er69kTLclki9Ts7ioAR6
|
||||
QpcEXcFi8DTz7R7MtBxhsukQo3X7kIZZc8bFLNcwTKFImchodyx3tNl0PhOb9EWKgvPQGcDi85PMPj3O
|
||||
VPNhxuod+FJtS0faZvzdrHCwMbExClRZcfS0JHFXmwUDSfBSrPvCh9lWd6aeODHe4MiI3o6Pmt30yk2R
|
||||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="COLBrowseCheats.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
@ -1742,24 +1670,6 @@
|
|||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="C64BrowseFirmwares.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
CvYBwq9wAwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
|
||||
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
|
||||
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
|
||||
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
|
||||
JlOSm8RNeRwFshjR+XvwQrUmm+mvmuWTF8Uw/XHQG7Iq/whul8r4/qnEWNsQbq7LNvJQn0WDTsa9ynT0
|
||||
6hR0JVLKVde5lZdAsTIOVXassY1QWZLO5Pt8DLWHWiXUVylZGJLCcOpK3olrg/HQFwWvI+iq8eVKsEeF
|
||||
oFalMDGQCR/k3K9W0P5IvrTpzyu8CoQOb+bb3Jh57MTbCjsunj06IQr2CqV5Er69kTLclki9Ts7ioAR6
|
||||
QpcEXcFi8DTz7R7MtBxhsukQo3X7kIZZc8bFLNcwTKFImchodyx3tNl0PhOb9EWKgvPQGcDi85PMPj3O
|
||||
VPNhxuod+FJtS0faZvzdrHCwMbExClRZcfS0JHFXmwUDSfBSrPvCh9lWd6aeODHe4MiI3o6Pmt30yk2R
|
||||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="C64BrowseCheats.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
@ -1796,42 +1706,6 @@
|
|||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="BrowseLog.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
CvYBwq9wAwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
|
||||
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
|
||||
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
|
||||
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
|
||||
JlOSm8RNeRwFshjR+XvwQrUmm+mvmuWTF8Uw/XHQG7Iq/whul8r4/qnEWNsQbq7LNvJQn0WDTsa9ynT0
|
||||
6hR0JVLKVde5lZdAsTIOVXassY1QWZLO5Pt8DLWHWiXUVylZGJLCcOpK3olrg/HQFwWvI+iq8eVKsEeF
|
||||
oFalMDGQCR/k3K9W0P5IvrTpzyu8CoQOb+bb3Jh57MTbCjsunj06IQr2CqV5Er69kTLclki9Ts7ioAR6
|
||||
QpcEXcFi8DTz7R7MtBxhsukQo3X7kIZZc8bFLNcwTKFImchodyx3tNl0PhOb9EWKgvPQGcDi85PMPj3O
|
||||
VPNhxuod+FJtS0faZvzdrHCwMbExClRZcfS0JHFXmwUDSfBSrPvCh9lWd6aeODHe4MiI3o6Pmt30yk2R
|
||||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="BrowseMovieBackups.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAK9gAA
|
||||
CvYBwq9wAwAAAnpJREFUOE+lk1lIlFEYhv+LLrqySI1CMLJELBADQ6qLEKVFTSm3QkkTyq0FQzHXZlxH
|
||||
nRnXKRVzRp1GHa0sxbBCKBSJ0HKhxNQsKCrF1FDJ7emfkSzLQPDiuTmc9znv+ThHAIT1sKZwWqHWWZqn
|
||||
41pmORkqPfFyTcKvQ9ckCIpS4RWmCDCELsWWmSeLsuhUtU9gVCFCnTbHT4S/aaqRKf53tfD4ohPeEQo8
|
||||
w3KNAvq7NcyM1xr5MaZjbkSNvlxBvTY1eTWJV7gSz9A83EMKEGorlEyPVa0IL3wuYq43kqqyTCqL01EX
|
||||
JlOSm8RNeRwFshjR+XvwQrUmm+mvmuWTF8Uw/XHQG7Iq/whul8r4/qnEWNsQbq7LNvJQn0WDTsa9ynT0
|
||||
6hR0JVLKVde5lZdAsTIOVXassY1QWZLO5Pt8DLWHWiXUVylZGJLCcOpK3olrg/HQFwWvI+iq8eVKsEeF
|
||||
oFalMDGQCR/k3K9W0P5IvrTpzyu8CoQOb+bb3Jh57MTbCjsunj06IQr2CqV5Er69kTLclki9Ts7ioAR6
|
||||
QpcEXcFi8DTz7R7MtBxhsukQo3X7kIZZc8bFLNcwTKFImchodyx3tNl0PhOb9EWKgvPQGcDi85PMPj3O
|
||||
VPNhxuod+FJtS0faZvzdrHCwMbExClRZcfS0JHFXmwUDSfBSrPvCh9lWd6aeODHe4MiI3o6Pmt30yk2R
|
||||
hOzCfo9F4/JTzs+IobY8k94H4XTkCMu0yzfQIttIY/ImahLMUcdYcOPqDvxddy462lu6LgtyUqPJkVwg
|
||||
IzaI+Mt+hslyzteFU8cO4HzQjv121thaWWC53YytW0zYZmqy8iGt5ysbsj8BvQ/ROxW7aPkAAAAASUVO
|
||||
RK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="folderBrowserDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
|
|
Loading…
Reference in New Issue