fix some dangling references to BizHawk.Multiclient mostly in comments, but also in some client facing tooltip and lua documentation
This commit is contained in:
parent
ecdbae1a84
commit
5f1df3224c
|
@ -13,7 +13,7 @@ using BizHawk.Client.Common;
|
|||
using BizHawk.Emulation.Common;
|
||||
|
||||
//notes: eventually, we intend to have a "firmware acquisition interface" exposed to the emulator cores.
|
||||
//it will be implemented by the multiclient, and use firmware keys to fetch the firmware content.
|
||||
//it will be implemented by emuhawk, and use firmware keys to fetch the firmware content.
|
||||
//however, for now, the cores are using strings from the config class. so we have the `configMember` which is
|
||||
//used by reflection to set the configuration for firmwares which were found
|
||||
|
||||
|
|
|
@ -10,10 +10,10 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
public partial class NESGraphicsConfig : Form
|
||||
{
|
||||
//TODO:
|
||||
//Allow selection of palette file from archive
|
||||
//Hotkeys for BG & Sprite display toggle
|
||||
//NTSC filter settings? Hue, Tint (This should probably be a multiclient thing, not a nes specific thing?)
|
||||
// TODO:
|
||||
// Allow selection of palette file from archive
|
||||
// Hotkeys for BG & Sprite display toggle
|
||||
// NTSC filter settings? Hue, Tint (This should probably be a client thing, not a nes specific thing?)
|
||||
|
||||
private NES nes;
|
||||
private NES.NESSettings settings;
|
||||
|
|
|
@ -91,7 +91,7 @@
|
|||
this.label4.Name = "label4";
|
||||
this.label4.Size = new System.Drawing.Size(277, 13);
|
||||
this.label4.TabIndex = 4;
|
||||
this.label4.Text = "Sets the path of the executable (BizHawk.MultiClient.exe)";
|
||||
this.label4.Text = "Sets the path of the executable (EmuHawk.exe)";
|
||||
//
|
||||
// label5
|
||||
//
|
||||
|
|
|
@ -217,7 +217,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
[LuaMethodAttributes(
|
||||
"screenshot",
|
||||
"if a parameter is passed it will function as the Screenshot As menu item of the multiclient, else it will function as the Screenshot menu item"
|
||||
"if a parameter is passed it will function as the Screenshot As menu item of EmuHawk, else it will function as the Screenshot menu item"
|
||||
)]
|
||||
public static void Screenshot(string path = null)
|
||||
{
|
||||
|
@ -233,7 +233,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
[LuaMethodAttributes(
|
||||
"screenshottoclipboard",
|
||||
"Performs the same function as the multiclient's Screenshot To Clipboard menu item"
|
||||
"Performs the same function as EmuHawk's Screenshot To Clipboard menu item"
|
||||
)]
|
||||
public static void ScreenshotToClipboard()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue