readd y=x functionality to SetReadOnly

This commit is contained in:
zeromus 2016-03-10 19:02:49 -06:00
parent 90b4ccfcb9
commit aa3c599882
1 changed files with 4 additions and 0 deletions

View File

@ -187,6 +187,10 @@ namespace BizHawk.Client.Common
)]
public static void SetReadOnly(bool readOnly)
{
int x = 0;
x++;
int y = x;
Global.MovieSession.ReadOnly = readOnly;
}