Record Movie - User Can Choose To Save Movie Files As .tas or ."consolebeingran".tas
Play Movie - Same As Record Movie
This commit is contained in:
parent
71396ad4b7
commit
b295d7cd23
|
@ -1218,9 +1218,6 @@ namespace BizHawk.MultiClient
|
||||||
if (button.Substring(0, 2) == "P" + LuaInt(controller).ToString())
|
if (button.Substring(0, 2) == "P" + LuaInt(controller).ToString())
|
||||||
buttons[button] = Global.ControllerOutput[button];
|
buttons[button] = Global.ControllerOutput[button];
|
||||||
|
|
||||||
foreach (var asd in Global.ControllerOutput.Source.Type.FloatControls)
|
|
||||||
MessageBox.Show(asd);
|
|
||||||
|
|
||||||
//zero 23-mar-2012 - wtf is this??????
|
//zero 23-mar-2012 - wtf is this??????
|
||||||
buttons["clear"] = null;
|
buttons["clear"] = null;
|
||||||
buttons["getluafunctionslist"] = null;
|
buttons["getluafunctionslist"] = null;
|
||||||
|
|
|
@ -72,8 +72,8 @@ namespace BizHawk.MultiClient
|
||||||
{
|
{
|
||||||
OpenFileDialog ofd = new OpenFileDialog();
|
OpenFileDialog ofd = new OpenFileDialog();
|
||||||
ofd.InitialDirectory = PathManager.MakeAbsolutePath(Global.Config.MoviesPath, "");
|
ofd.InitialDirectory = PathManager.MakeAbsolutePath(Global.Config.MoviesPath, "");
|
||||||
//ofd.Filter = "Generic Movie Files (*.tas)|*.tas;*.zip;*.7z|" + Global.MainForm.GetMovieExtName() + "|Savestates|*.state|Archive Files|*.zip;*.7z|All Files|*.*";
|
ofd.Filter = "Generic Movie Files (*.tas)|*.tas;*.zip;*.7z|" + Global.MainForm.GetMovieExtName() + "|Savestates|*.state|Archive Files|*.zip;*.7z|All Files|*.*";
|
||||||
ofd.Filter = "Generic Movie Files (*.tas)|*.tas;*.zip;*.7z|Savestates|*.state|Archive Files|*.zip;*.7z|All Files|*.*";
|
//ofd.Filter = "Generic Movie Files (*.tas)|*.tas;*.zip;*.7z|Savestates|*.state|Archive Files|*.zip;*.7z|All Files|*.*";
|
||||||
|
|
||||||
Global.Sound.StopSound();
|
Global.Sound.StopSound();
|
||||||
var result = ofd.ShowDialog();
|
var result = ofd.ShowDialog();
|
||||||
|
|
|
@ -111,8 +111,8 @@ namespace BizHawk.MultiClient
|
||||||
sfd.InitialDirectory = PathManager.MakeAbsolutePath(Global.Config.MoviesPath, "");
|
sfd.InitialDirectory = PathManager.MakeAbsolutePath(Global.Config.MoviesPath, "");
|
||||||
sfd.DefaultExt = ".tas";
|
sfd.DefaultExt = ".tas";
|
||||||
sfd.FileName = PathManager.FilesystemSafeName(Global.Game) + "." + sfd.DefaultExt;
|
sfd.FileName = PathManager.FilesystemSafeName(Global.Game) + "." + sfd.DefaultExt;
|
||||||
//sfd.Filter = "Generic Movie Files (*.tas)|*.tas|" + Global.MainForm.GetMovieExtName() + "|All Files (*.*)|*.*";
|
sfd.Filter = "Generic Movie Files (*.tas)|*.tas|" + Global.MainForm.GetMovieExtName() + "|All Files (*.*)|*.*";
|
||||||
sfd.Filter = "Generic Movie Files (*.tas)|*.tas|All Files (*.*)|*.*";
|
//sfd.Filter = "Generic Movie Files (*.tas)|*.tas|All Files (*.*)|*.*";
|
||||||
|
|
||||||
Global.Sound.StopSound();
|
Global.Sound.StopSound();
|
||||||
var result = sfd.ShowDialog();
|
var result = sfd.ShowDialog();
|
||||||
|
|
Loading…
Reference in New Issue