Bind ROM in HawkFile, add .rom to open file dialog (and a TI-83 row), fix a bunch of tool dialogs to end the Restart() method if dialog is not open. TI-83 will now open properly again.
This commit is contained in:
parent
34894b322d
commit
c76f9ed729
|
@ -505,7 +505,7 @@ namespace BizHawk.MultiClient
|
|||
|
||||
//try binding normal rom extensions first
|
||||
if (!file.IsBound)
|
||||
file.BindSoleItemOf("SMS", "PCE", "SGX", "GG", "SG", "BIN", "SMD", "GB", "NES");
|
||||
file.BindSoleItemOf("SMS", "PCE", "SGX", "GG", "SG", "BIN", "SMD", "GB", "NES", "ROM");
|
||||
|
||||
//if we have an archive and need to bind something, then pop the dialog
|
||||
if (file.IsArchive && !file.IsBound)
|
||||
|
@ -1470,7 +1470,7 @@ namespace BizHawk.MultiClient
|
|||
{
|
||||
var ofd = new OpenFileDialog();
|
||||
ofd.InitialDirectory = Global.Config.LastRomPath;
|
||||
ofd.Filter = "Rom Files|*.NES;*.SMS;*.GG;*.SG;*.PCE;*.SGX;*.GB;*.BIN;*.SMD;*.ZIP;*.7z|NES|*.NES|Master System|*.SMS;*.GG;*.SG;*.ZIP;*.7z|PC Engine|*.PCE;*.SGX;*.ZIP;*.7z|Gameboy|*.GB;*.ZIP;*.7z|Archive Files|*.zip;*.7z|All Files|*.*";
|
||||
ofd.Filter = "Rom Files|*.NES;*.SMS;*.GG;*.SG;*.PCE;*.SGX;*.GB;*.BIN;*.SMD;*.ROM;*.ZIP;*.7z|NES|*.NES|Master System|*.SMS;*.GG;*.SG;*.ZIP;*.7z|PC Engine|*.PCE;*.SGX;*.ZIP;*.7z|Gameboy|*.GB;*.ZIP;*.7z|TI-83|*.rom|Archive Files|*.zip;*.7z|All Files|*.*";
|
||||
ofd.RestoreDirectory = true;
|
||||
|
||||
Global.Sound.StopSound();
|
||||
|
|
|
@ -25,7 +25,7 @@ namespace BizHawk.MultiClient
|
|||
|
||||
public void Restart()
|
||||
{
|
||||
|
||||
if (!this.IsHandleCreated || this.IsDisposed) return;
|
||||
}
|
||||
|
||||
private void NESDebugger_Load(object sender, EventArgs e)
|
||||
|
|
|
@ -64,6 +64,7 @@ namespace BizHawk.MultiClient
|
|||
public void Restart()
|
||||
{
|
||||
if (!(Global.Emulator is NES)) this.Close();
|
||||
if (!this.IsHandleCreated || this.IsDisposed) return;
|
||||
Nes = Global.Emulator as NES;
|
||||
}
|
||||
|
||||
|
|
|
@ -41,6 +41,7 @@ namespace BizHawk.MultiClient
|
|||
public void Restart()
|
||||
{
|
||||
if (!(Global.Emulator is NES)) this.Close();
|
||||
if (!this.IsHandleCreated || this.IsDisposed) return;
|
||||
Nes = Global.Emulator as NES;
|
||||
}
|
||||
|
||||
|
|
|
@ -72,7 +72,8 @@ namespace BizHawk.MultiClient
|
|||
|
||||
public void Restart()
|
||||
{
|
||||
NewCheatList();
|
||||
NewCheatList(); //Should be run even if dialog isn't open so cheats system can work
|
||||
if (!this.IsHandleCreated || this.IsDisposed) return;
|
||||
ClearFields();
|
||||
}
|
||||
|
||||
|
|
|
@ -76,6 +76,7 @@ namespace BizHawk.MultiClient
|
|||
|
||||
public void Restart()
|
||||
{
|
||||
if (!this.IsHandleCreated || this.IsDisposed) return;
|
||||
SetMemoryDomainMenu(); //Calls update routines
|
||||
MemoryViewer.ResetScrollBar();
|
||||
}
|
||||
|
|
|
@ -127,6 +127,7 @@ namespace BizHawk.MultiClient
|
|||
|
||||
public void Restart()
|
||||
{
|
||||
if (!this.IsHandleCreated || this.IsDisposed) return;
|
||||
SetMemoryDomainMenu(); //Calls Start New Search
|
||||
}
|
||||
|
||||
|
|
|
@ -17,6 +17,7 @@ namespace BizHawk.MultiClient
|
|||
public partial class RamWatch : Form
|
||||
{
|
||||
//TODO:
|
||||
//Restart() method to be called in main
|
||||
//Restore window size should restore column order as well
|
||||
//When receiving a watch from a different domain, should something be done?
|
||||
|
||||
|
|
Loading…
Reference in New Issue