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:
adelikat 2014-07-27 01:19:33 +00:00
parent ecdbae1a84
commit 5f1df3224c
4 changed files with 8 additions and 8 deletions

View File

@ -13,7 +13,7 @@ using BizHawk.Client.Common;
using BizHawk.Emulation.Common; using BizHawk.Emulation.Common;
//notes: eventually, we intend to have a "firmware acquisition interface" exposed to the emulator cores. //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 //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 //used by reflection to set the configuration for firmwares which were found

View File

@ -10,10 +10,10 @@ namespace BizHawk.Client.EmuHawk
{ {
public partial class NESGraphicsConfig : Form public partial class NESGraphicsConfig : Form
{ {
//TODO: // TODO:
//Allow selection of palette file from archive // Allow selection of palette file from archive
//Hotkeys for BG & Sprite display toggle // Hotkeys for BG & Sprite display toggle
//NTSC filter settings? Hue, Tint (This should probably be a multiclient thing, not a nes specific thing?) // NTSC filter settings? Hue, Tint (This should probably be a client thing, not a nes specific thing?)
private NES nes; private NES nes;
private NES.NESSettings settings; private NES.NESSettings settings;

View File

@ -91,7 +91,7 @@
this.label4.Name = "label4"; this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(277, 13); this.label4.Size = new System.Drawing.Size(277, 13);
this.label4.TabIndex = 4; 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 // label5
// //

View File

@ -217,7 +217,7 @@ namespace BizHawk.Client.EmuHawk
[LuaMethodAttributes( [LuaMethodAttributes(
"screenshot", "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) public static void Screenshot(string path = null)
{ {
@ -233,7 +233,7 @@ namespace BizHawk.Client.EmuHawk
[LuaMethodAttributes( [LuaMethodAttributes(
"screenshottoclipboard", "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() public static void ScreenshotToClipboard()
{ {