From 2659caec94ea7c11bbe484f11735a87692315ae7 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 15 Oct 2012 20:52:55 +0000 Subject: [PATCH] Path Config - fix atari browse buttons --- BizHawk.MultiClient/config/PathConfig.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/BizHawk.MultiClient/config/PathConfig.cs b/BizHawk.MultiClient/config/PathConfig.cs index 03f0262d64..3babf13539 100644 --- a/BizHawk.MultiClient/config/PathConfig.cs +++ b/BizHawk.MultiClient/config/PathConfig.cs @@ -642,27 +642,27 @@ namespace BizHawk.MultiClient private void BrowseAtariROMs_Click(object sender, EventArgs e) { - BrowseFolder(AtariROMsBox, AtariROMsDescription.Text, "Atari"); + BrowseFolder(AtariROMsBox, AtariROMsDescription.Text, "A26"); } private void BrowseAtariSavestates_Click(object sender, EventArgs e) { - BrowseFolder(AtariSavestatesBox, AtariSavestatesDescription.Text, "Atari"); + BrowseFolder(AtariSavestatesBox, AtariSavestatesDescription.Text, "A26"); } private void BrowseAtariSaveRAM_Click(object sender, EventArgs e) { - BrowseFolder(AtariSaveRAMBox, AtariSaveRAMDescription.Text, "Atari"); + BrowseFolder(AtariSaveRAMBox, AtariSaveRAMDescription.Text, "A26"); } private void BrowseAtariScreenshots_Click(object sender, EventArgs e) { - BrowseFolder(AtariScreenshotsBox, AtariScreenshotsDescription.Text, "Atari"); + BrowseFolder(AtariScreenshotsBox, AtariScreenshotsDescription.Text, "A26"); } private void AtariBrowseCheats_Click(object sender, EventArgs e) { - BrowseFolder(AtariCheatsBox, AtariCheatsDescription.Text, "Atari"); + BrowseFolder(AtariCheatsBox, AtariCheatsDescription.Text, "A26"); } private void INTVBrowseBase_Click(object sender, EventArgs e)