Add fast forward option

This commit is contained in:
Cacodemon345
2026-01-08 18:46:23 +06:00
parent 06c3186858
commit 75cfe2bc7d
10 changed files with 48 additions and 9 deletions

View File

@@ -65,6 +65,7 @@ extern int qt_nvr_save(void);
#endif
extern bool cpu_thread_running;
extern bool fast_forward;
};
#include <QGuiApplication>
@@ -2135,6 +2136,12 @@ MainWindow::on_actionUpdate_mouse_every_CPU_frame_triggered()
config_save();
}
void
MainWindow::on_action_Fast_forward_triggered()
{
fast_forward ^= 1;
}
void
MainWindow::on_actionRemember_size_and_position_triggered()
{