Lua - movie.getrerecordcounting() and movie.setrerecordcounting() implemented
This commit is contained in:
parent
50e357f345
commit
5203286f34
|
@ -1194,12 +1194,12 @@ namespace BizHawk.MultiClient
|
||||||
return input;
|
return input;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool getrerecordcounting()
|
public bool movie_getrerecordcounting()
|
||||||
{
|
{
|
||||||
return Global.MovieSession.Movie.RerecordCounting;
|
return Global.MovieSession.Movie.RerecordCounting;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setrerecordcounting(object lua_input)
|
public void movie_setrerecordcounting(object lua_input)
|
||||||
{
|
{
|
||||||
if (lua_input.ToString().ToUpper() == "TRUE" || lua_input.ToString() == "1")
|
if (lua_input.ToString().ToUpper() == "TRUE" || lua_input.ToString() == "1")
|
||||||
Global.MovieSession.Movie.RerecordCounting = true;
|
Global.MovieSession.Movie.RerecordCounting = true;
|
||||||
|
|
Loading…
Reference in New Issue