Lua - movie.getrerecordcounting() and movie.setrerecordcounting() implemented

This commit is contained in:
adelikat 2012-03-29 03:16:55 +00:00
parent 50e357f345
commit 5203286f34
1 changed files with 2 additions and 2 deletions

View File

@ -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;