mirror of
https://github.com/libretro/Mesen.git
synced 2025-01-19 07:12:48 +00:00
Movies: Disable some UI options while recording (since they cannot be reliably changed during recording)
This commit is contained in:
parent
5dc656624a
commit
87fd9734b2
@ -18,6 +18,9 @@ namespace Mesen.GUI.Forms.Config
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
tpgOverclocking.Enabled = !InteropEmu.MoviePlaying() && !InteropEmu.MovieRecording();
|
||||
tpgAdvanced.Enabled = !InteropEmu.MoviePlaying() && !InteropEmu.MovieRecording();
|
||||
|
||||
ConfigManager.Config.EmulationInfo.EmulationSpeed = InteropEmu.GetEmulationSpeed();
|
||||
Entity = ConfigManager.Config.EmulationInfo;
|
||||
|
||||
|
@ -947,7 +947,8 @@ namespace Mesen.GUI.Forms
|
||||
mnuPlayMovie.Enabled = !netPlay && !moviePlaying && !movieRecording;
|
||||
mnuStopMovie.Enabled = running && !netPlay && (moviePlaying || movieRecording);
|
||||
mnuRecordMovie.Enabled = running && !moviePlaying && !movieRecording && !isNetPlayClient;
|
||||
|
||||
mnuVsGameConfig.Enabled = !moviePlaying && !movieRecording;
|
||||
|
||||
bool waveRecording = InteropEmu.WaveIsRecording();
|
||||
mnuWaveRecord.Enabled = running && !waveRecording;
|
||||
mnuWaveStop.Enabled = running && waveRecording;
|
||||
|
Loading…
x
Reference in New Issue
Block a user