Add files via upload
This commit is contained in:
parent
4fbd7ff033
commit
250a3da0e9
|
@ -326,6 +326,7 @@
|
|||
this.SnesOptionsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.ColecoSubMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.ColecoSkipBiosMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.ColecoControllerSettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.N64SubMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.N64PluginSettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.N64ControllerSettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
|
@ -2912,7 +2913,7 @@
|
|||
// ColecoSubMenu
|
||||
//
|
||||
this.ColecoSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.ColecoSkipBiosMenuItem});
|
||||
this.ColecoSkipBiosMenuItem, this.ColecoControllerSettingsMenuItem});
|
||||
this.ColecoSubMenu.Name = "ColecoSubMenu";
|
||||
this.ColecoSubMenu.Size = new System.Drawing.Size(56, 19);
|
||||
this.ColecoSubMenu.Text = "&Coleco";
|
||||
|
@ -2925,6 +2926,14 @@
|
|||
this.ColecoSkipBiosMenuItem.Text = "&Skip BIOS intro (When Applicable)";
|
||||
this.ColecoSkipBiosMenuItem.Click += new System.EventHandler(this.ColecoSkipBiosMenuItem_Click);
|
||||
//
|
||||
// ColecoControllerSettingsMenuItem
|
||||
//
|
||||
this.ColecoControllerSettingsMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.GameController;
|
||||
this.ColecoControllerSettingsMenuItem.Name = "ColecoControllerSettingsMenuItem";
|
||||
this.ColecoControllerSettingsMenuItem.Size = new System.Drawing.Size(181, 22);
|
||||
this.ColecoControllerSettingsMenuItem.Text = "Controller Settings...";
|
||||
this.ColecoControllerSettingsMenuItem.Click += new System.EventHandler(this.ColecoControllerSettingsMenuItem_Click);
|
||||
//
|
||||
// N64SubMenu
|
||||
//
|
||||
this.N64SubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
|
@ -4077,6 +4086,7 @@
|
|||
private System.Windows.Forms.ToolStripSeparator toolStripSeparator28;
|
||||
private System.Windows.Forms.ToolStripMenuItem ColecoSubMenu;
|
||||
private System.Windows.Forms.ToolStripMenuItem ColecoSkipBiosMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem ColecoControllerSettingsMenuItem;
|
||||
private System.Windows.Forms.ToolStripStatusLabel LedLightStatusLabel;
|
||||
private System.Windows.Forms.ToolStripMenuItem GBASubMenu;
|
||||
private System.Windows.Forms.ToolStripMenuItem GbaGpuViewerMenuItem;
|
||||
|
|
|
@ -2195,6 +2195,11 @@ namespace BizHawk.Client.EmuHawk
|
|||
PutCoreSyncSettings(ss);
|
||||
}
|
||||
|
||||
private void ColecoControllerSettingsMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
new ColecoControllerSettings().ShowDialog();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region N64
|
||||
|
|
|
@ -1370,7 +1370,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
private bool _runloopFrameProgress;
|
||||
private long _frameAdvanceTimestamp;
|
||||
private long _frameRewindTimestamp;
|
||||
private bool _frameRewindWasPaused;
|
||||
private bool _runloopFrameadvance;
|
||||
private bool _lastFastForwardingOrRewinding;
|
||||
private bool _inResizeLoop;
|
||||
|
@ -2002,7 +2001,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (VersionInfo.DeveloperBuild)
|
||||
{
|
||||
return FormatFilter(
|
||||
"Rom Files", "*.nes;*.fds;*.unf;*.sms;*.gg;*.sg;*.pce;*.sgx;*.bin;*.smd;*.rom;*.a26;*.a78;*.lnx;*.m3u;*.cue;*.ccd;*.exe;*.gb;*.gbc;*.gba;*.gen;*.md;*.col;*.int;*.smc;*.sfc;*.prg;*.d64;*.g64;*.crt;*.tap;*.sgb;*.xml;*.z64;*.v64;*.n64;*.ws;*.wsc;*.dsk;*.do;*.po;*.psf;*.minipsf;*.nsf;%ARCH%",
|
||||
"Rom Files", "*.nes;*.fds;*.unf;*.sms;*.gg;*.sg;*.pce;*.sgx;*.bin;*.smd;*.rom;*.a26;*.a78;*.lnx;*.m3u;*.cue;*.ccd;*.exe;*.gb;*.gbc;*.gba;*.gen;*.md;*.col;.int;*.smc;*.sfc;*.prg;*.d64;*.g64;*.crt;*.tap;*.sgb;*.xml;*.z64;*.v64;*.n64;*.ws;*.wsc;*.dsk;*.do;*.po;*.psf;*.minipsf;*.nsf;*.int;%ARCH%",
|
||||
"Music Files", "*.psf;*.minipsf;*.sid;*.nsf",
|
||||
"Disc Images", "*.cue;*.ccd;*.m3u",
|
||||
"NES", "*.nes;*.fds;*.unf;*.nsf;%ARCH%",
|
||||
|
@ -2019,7 +2018,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
"Gameboy", "*.gb;*.gbc;*.sgb;%ARCH%",
|
||||
"Gameboy Advance", "*.gba;%ARCH%",
|
||||
"Colecovision", "*.col;%ARCH%",
|
||||
"Intellivision", "*.int;*.bin;*.rom;%ARCH%",
|
||||
"Intellivision (very experimental)", "*.int;*.bin;*.rom;%ARCH%",
|
||||
"PlayStation", "*.cue;*.ccd;*.m3u",
|
||||
"PSX Executables (experimental)", "*.exe",
|
||||
"PSF Playstation Sound File", "*.psf;*.minipsf",
|
||||
|
@ -2032,7 +2031,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
|
||||
return FormatFilter(
|
||||
"Rom Files", "*.nes;*.fds;*.unf;*.sms;*.gg;*.sg;*.gb;*.gbc;*.gba;*.pce;*.sgx;*.bin;*.smd;*.gen;*.md;*.smc;*.sfc;*.a26;*.a78;*.lnx;*.col;*.int;*.rom;*.m3u;*.cue;*.ccd;*.sgb;*.z64;*.v64;*.n64;*.ws;*.wsc;*.xml;*.dsk;*.do;*.po;*.psf;*.minipsf;*.nsf;%ARCH%",
|
||||
"Rom Files", "*.nes;*.fds;*.unf;*.sms;*.gg;*.sg;*.gb;*.gbc;*.gba;*.pce;*.sgx;*.bin;*.smd;*.gen;*.md;*.smc;*.sfc;*.a26;*.a78;*.lnx;*.col;*.rom;*.m3u;*.cue;*.ccd;*.sgb;*.z64;*.v64;*.n64;*.ws;*.wsc;*.xml;*.dsk;*.do;*.po;*.psf;*.minipsf;*.nsf;%ARCH%",
|
||||
"Disc Images", "*.cue;*.ccd;*.m3u",
|
||||
"NES", "*.nes;*.fds;*.unf;*.nsf;%ARCH%",
|
||||
"Super NES", "*.smc;*.sfc;*.xml;%ARCH%",
|
||||
|
@ -2047,7 +2046,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
"Atari 7800", "*.a78;%ARCH%",
|
||||
"Atari Lynx", "*.lnx;%ARCH%",
|
||||
"Colecovision", "*.col;%ARCH%",
|
||||
"Intellivision", "*.int;*.bin;*.rom;%ARCH%",
|
||||
"TI-83", "*.rom;%ARCH%",
|
||||
"Archive Files", "%ARCH%",
|
||||
"Savestate", "*.state",
|
||||
|
@ -3922,11 +3920,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
return;
|
||||
}
|
||||
|
||||
// allow named state export for tastudio, since it's safe, unlike loading one
|
||||
// todo: make it not save laglog in that case
|
||||
if (GlobalWin.Tools.IsLoaded<TAStudio>())
|
||||
GlobalWin.Tools.TAStudio.NamedStatePending = true;
|
||||
|
||||
if (IsSlave && master.WantsToControlSavestates)
|
||||
{
|
||||
master.SaveStateAs();
|
||||
|
@ -3955,9 +3948,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
SaveState(sfd.FileName, sfd.FileName, false);
|
||||
}
|
||||
|
||||
if (GlobalWin.Tools.IsLoaded<TAStudio>())
|
||||
GlobalWin.Tools.TAStudio.NamedStatePending = false;
|
||||
}
|
||||
|
||||
private void LoadStateAs()
|
||||
|
@ -4130,25 +4120,13 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
isRewinding = true;
|
||||
_frameRewindTimestamp = currentTimestamp;
|
||||
_frameRewindWasPaused = EmulatorPaused;
|
||||
}
|
||||
else
|
||||
{
|
||||
double timestampDeltaMs = (double)(currentTimestamp - _frameRewindTimestamp) / Stopwatch.Frequency * 1000.0;
|
||||
isRewinding = timestampDeltaMs >= Global.Config.FrameProgressDelayMs;
|
||||
|
||||
//clear this flag once we get out of the progress stage
|
||||
if (isRewinding)
|
||||
_frameRewindWasPaused = false;
|
||||
|
||||
//if we're freely running, there's no need for reverse frame progress semantics (that may be debateable though)
|
||||
if (!EmulatorPaused) isRewinding = true;
|
||||
|
||||
if (_frameRewindWasPaused)
|
||||
if (IsSeeking) isRewinding = false;
|
||||
}
|
||||
|
||||
|
||||
if (isRewinding)
|
||||
{
|
||||
runFrame = true; // TODO: the master should be deciding this!
|
||||
|
|
Loading…
Reference in New Issue