Poke: Ram -> RAM #669

This commit is contained in:
Isotarge 2016-07-22 01:52:43 +09:30
parent 5a20a520bd
commit 41ff244e01
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
namespace BizHawk.Client.EmuHawk
namespace BizHawk.Client.EmuHawk
{
partial class RamPoke
{
@ -232,7 +232,7 @@
this.MinimizeBox = false;
this.Name = "RamPoke";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Ram Poke";
this.Text = "RAM Poke";
this.Load += new System.EventHandler(this.RamPoke_Load);
this.ResumeLayout(false);
this.PerformLayout();

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
@ -29,7 +29,7 @@ namespace BizHawk.Client.EmuHawk
private void UnSupportedConfiguration()
{
MessageBox.Show("Ram Poke does not support mixed types", "Unsupported Options", MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBox.Show("RAM Poke does not support mixed types", "Unsupported Options", MessageBoxButtons.OK, MessageBoxIcon.Error);
Close();
}
@ -91,7 +91,7 @@ namespace BizHawk.Client.EmuHawk
private void SetTitle()
{
Text = "Ram Poke - " + _watchList[0].Domain.Name;
Text = "RAM Poke - " + _watchList[0].Domain.Name;
}
private void Cancel_Click(object sender, EventArgs e)