Make platform specific game genie tools not released, so they don't show up in the toolbox

This commit is contained in:
adelikat 2015-12-20 12:49:14 -05:00
parent 01e72a2d94
commit 223295cd87
4 changed files with 4 additions and 3 deletions

View File

@ -5,11 +5,11 @@ using System.Text.RegularExpressions;
using System.Windows.Forms; using System.Windows.Forms;
using BizHawk.Emulation.Common; using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.IEmulatorExtensions;
using BizHawk.Client.Common; using BizHawk.Client.Common;
namespace BizHawk.Client.EmuHawk namespace BizHawk.Client.EmuHawk
{ {
[ToolAttributes(false, null)]
public partial class GBGameGenie : Form, IToolFormAutoConfig public partial class GBGameGenie : Form, IToolFormAutoConfig
{ {
// TODO: fix the use of Global.Game.System and Emulator.SystemId // TODO: fix the use of Global.Game.System and Emulator.SystemId

View File

@ -12,6 +12,7 @@ using BizHawk.Emulation.Cores.Consoles.Sega.gpgx;
namespace BizHawk.Client.EmuHawk namespace BizHawk.Client.EmuHawk
{ {
[ToolAttributes(false, null)]
public partial class GenGameGenie : Form, IToolFormAutoConfig public partial class GenGameGenie : Form, IToolFormAutoConfig
{ {
#pragma warning disable 675 #pragma warning disable 675

View File

@ -4,11 +4,11 @@ using System.Globalization;
using System.Windows.Forms; using System.Windows.Forms;
using BizHawk.Emulation.Common; using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.IEmulatorExtensions;
using BizHawk.Client.Common; using BizHawk.Client.Common;
namespace BizHawk.Client.EmuHawk namespace BizHawk.Client.EmuHawk
{ {
[ToolAttributes(false, null)]
public partial class NESGameGenie : Form, IToolFormAutoConfig public partial class NESGameGenie : Form, IToolFormAutoConfig
{ {
[RequiredService] [RequiredService]

View File

@ -5,12 +5,12 @@ using System.Text.RegularExpressions;
using System.Windows.Forms; using System.Windows.Forms;
using BizHawk.Emulation.Common; using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.IEmulatorExtensions;
using BizHawk.Emulation.Cores.Nintendo.SNES; using BizHawk.Emulation.Cores.Nintendo.SNES;
using BizHawk.Client.Common; using BizHawk.Client.Common;
namespace BizHawk.Client.EmuHawk namespace BizHawk.Client.EmuHawk
{ {
[ToolAttributes(false, null)]
public partial class SNESGameGenie : Form, IToolFormAutoConfig public partial class SNESGameGenie : Form, IToolFormAutoConfig
{ {
[RequiredService] [RequiredService]