From 04b6b2baa01146a2d1fd232dd3566d7955d86962 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Sat, 26 Feb 2011 22:08:55 +0000 Subject: [PATCH] Fix typo! --- BizHawk.Emulation/Consoles/Calculator/TI83.cs | 2 +- BizHawk.Emulation/Consoles/Gameboy/Input.cs | 2 +- BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs | 2 +- BizHawk.Emulation/Consoles/PC Engine/Input.cs | 2 +- BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.Input.cs | 2 +- BizHawk.Emulation/Consoles/Sega/SMS/Input.cs | 2 +- .../Interfaces/Base Implementations/NullEmulator.cs | 2 +- BizHawk.Emulation/Interfaces/IEmulator.cs | 2 +- BizHawk.MultiClient/RenderPanel.cs | 2 +- BizHawk.MultiClient/movie/Movie.cs | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/BizHawk.Emulation/Consoles/Calculator/TI83.cs b/BizHawk.Emulation/Consoles/Calculator/TI83.cs index 5902c632d8..ca874f72c7 100644 --- a/BizHawk.Emulation/Consoles/Calculator/TI83.cs +++ b/BizHawk.Emulation/Consoles/Calculator/TI83.cs @@ -27,7 +27,7 @@ namespace BizHawk.Emulation.Consoles.Calculator bool m_CursorMoved; //------- - public string GetControllersAsMneumonic() { return "|.|0|"; } //TODO: Implement this + public string GetControllersAsMnemonic() { return "|.|0|"; } //TODO: Implement this public byte ReadMemory(ushort addr) { diff --git a/BizHawk.Emulation/Consoles/Gameboy/Input.cs b/BizHawk.Emulation/Consoles/Gameboy/Input.cs index 8b8dc733cf..5a9d0b5638 100644 --- a/BizHawk.Emulation/Consoles/Gameboy/Input.cs +++ b/BizHawk.Emulation/Consoles/Gameboy/Input.cs @@ -11,7 +11,7 @@ } }; - public string GetControllersAsMneumonic() + public string GetControllersAsMnemonic() { return "|........|0|"; } diff --git a/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs b/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs index 595e769ab7..2fbede1e0d 100644 --- a/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs +++ b/BizHawk.Emulation/Consoles/Nintendo/NES/NES.cs @@ -166,7 +166,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo return null; } - public string GetControllersAsMneumonic() + public string GetControllersAsMnemonic() { return "|........|........|0|"; //TODO: implement } diff --git a/BizHawk.Emulation/Consoles/PC Engine/Input.cs b/BizHawk.Emulation/Consoles/PC Engine/Input.cs index 22425bb112..2c8c8ced23 100644 --- a/BizHawk.Emulation/Consoles/PC Engine/Input.cs +++ b/BizHawk.Emulation/Consoles/PC Engine/Input.cs @@ -13,7 +13,7 @@ public IController Controller { get; set; } - public string GetControllersAsMneumonic() + public string GetControllersAsMnemonic() { //TODO: Implement all controllers diff --git a/BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.Input.cs b/BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.Input.cs index 5584aa6442..4464b69494 100644 --- a/BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.Input.cs +++ b/BizHawk.Emulation/Consoles/Sega/Genesis/Genesis.Input.cs @@ -13,7 +13,7 @@ }; - public string GetControllersAsMneumonic() + public string GetControllersAsMnemonic() { return "|........|0|"; //TODO: implement } diff --git a/BizHawk.Emulation/Consoles/Sega/SMS/Input.cs b/BizHawk.Emulation/Consoles/Sega/SMS/Input.cs index b7f4a846d3..a403f73957 100644 --- a/BizHawk.Emulation/Consoles/Sega/SMS/Input.cs +++ b/BizHawk.Emulation/Consoles/Sega/SMS/Input.cs @@ -14,7 +14,7 @@ }; - public string GetControllersAsMneumonic() + public string GetControllersAsMnemonic() { string input = "|"; diff --git a/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs b/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs index 975acf258d..70df196e5c 100644 --- a/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs +++ b/BizHawk.Emulation/Interfaces/Base Implementations/NullEmulator.cs @@ -29,7 +29,7 @@ namespace BizHawk public ControllerDefinition ControllerDefinition { get { return NullController; } } public IController Controller { get; set; } - public string GetControllersAsMneumonic() { return "|.|0|"; } + public string GetControllersAsMnemonic() { return "|.|0|"; } public int Frame { get; set; } public byte[] SaveRam { get { return new byte[0]; } } diff --git a/BizHawk.Emulation/Interfaces/IEmulator.cs b/BizHawk.Emulation/Interfaces/IEmulator.cs index 4bd4e4120e..d294ab9eb6 100644 --- a/BizHawk.Emulation/Interfaces/IEmulator.cs +++ b/BizHawk.Emulation/Interfaces/IEmulator.cs @@ -12,7 +12,7 @@ namespace BizHawk ControllerDefinition ControllerDefinition { get; } IController Controller { get; set; } - string GetControllersAsMneumonic(); + string GetControllersAsMnemonic(); void LoadGame(IGame game); void FrameAdvance(bool render); diff --git a/BizHawk.MultiClient/RenderPanel.cs b/BizHawk.MultiClient/RenderPanel.cs index 2b5864146c..d293facddc 100644 --- a/BizHawk.MultiClient/RenderPanel.cs +++ b/BizHawk.MultiClient/RenderPanel.cs @@ -298,7 +298,7 @@ namespace BizHawk.MultiClient public string MakeInputDisplay() { - string tmp = Global.Emulator.GetControllersAsMneumonic(); + string tmp = Global.Emulator.GetControllersAsMnemonic(); tmp = tmp.Replace(".", " "); tmp = tmp.Replace("|", ""); return tmp; diff --git a/BizHawk.MultiClient/movie/Movie.cs b/BizHawk.MultiClient/movie/Movie.cs index c3679ca424..d461eab532 100644 --- a/BizHawk.MultiClient/movie/Movie.cs +++ b/BizHawk.MultiClient/movie/Movie.cs @@ -43,7 +43,7 @@ namespace BizHawk.MultiClient public void GetMneumonic() { if (MovieMode == MOVIEMODE.RECORD) - Log.AddFrame(Global.Emulator.GetControllersAsMneumonic()); + Log.AddFrame(Global.Emulator.GetControllersAsMnemonic()); } public void AddMovieRecord()