Revert SetReadOnly() function
This commit is contained in:
parent
f7ee1dbbf3
commit
520dfcb37b
|
@ -272,7 +272,7 @@ namespace BizHawk.MultiClient
|
|||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if(Global.DisplayManager != null) Global.DisplayManager.Dispose();
|
||||
if (Global.DisplayManager != null) Global.DisplayManager.Dispose();
|
||||
Global.DisplayManager = null;
|
||||
|
||||
if (disposing && (components != null))
|
||||
|
@ -2595,15 +2595,9 @@ namespace BizHawk.MultiClient
|
|||
{
|
||||
ReadOnly = read_only;
|
||||
if (ReadOnly)
|
||||
{
|
||||
Global.MovieSession.Movie.Mode = MOVIEMODE.PLAY;
|
||||
Global.OSD.AddMessage("Movie read-only mode");
|
||||
}
|
||||
else
|
||||
{
|
||||
Global.MovieSession.Movie.Mode = MOVIEMODE.RECORD;
|
||||
Global.OSD.AddMessage("Movie read+write mode");
|
||||
}
|
||||
}
|
||||
|
||||
public void LoadRamWatch()
|
||||
|
|
Loading…
Reference in New Issue