mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-05 07:39:01 +00:00
add new command line argument for hiding seekbar
This commit is contained in:
parent
d91d146c0e
commit
8ae8a60cd1
5 changed files with 15 additions and 1 deletions
|
@ -142,6 +142,11 @@ int main(int argc, char* argv[])
|
|||
Settings::Instance().SetBatchModeEnabled(options.is_set("batch"));
|
||||
Settings::Instance().SetSlippiInputFile(static_cast<const char*>(options.get("slippi_input")));
|
||||
|
||||
#ifdef IS_PLAYBACK
|
||||
if (options.is_set("hide-seekbar"))
|
||||
Settings::Instance().SetSlippiSeekbarEnabled(false);
|
||||
#endif
|
||||
|
||||
// Hook up alerts from core
|
||||
Common::RegisterMsgAlertHandler(QtMsgAlertHandler);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue