Qt: Fix audio sliders not applying correctly
This commit is contained in:
@ -183,8 +183,8 @@ public:
|
||||
/// Parses a fullscreen mode into its components (width * height @ refresh hz)
|
||||
static bool ParseFullscreenMode(const std::string_view& mode, u32* width, u32* height, float* refresh_rate);
|
||||
|
||||
/// Returns true if fast forwarding is currently active.
|
||||
bool IsFastForwardEnabled() const { return m_fast_forward_enabled; }
|
||||
/// Returns true if fast forwarding or slow motion is currently active.
|
||||
bool IsRunningAtNonStandardSpeed() const;
|
||||
|
||||
/// Requests the specified size for the render window. Not guaranteed to succeed (e.g. if in fullscreen).
|
||||
virtual bool RequestRenderWindowSize(s32 new_window_width, s32 new_window_height);
|
||||
@ -351,7 +351,7 @@ protected:
|
||||
bool m_fast_forward_enabled = false;
|
||||
bool m_turbo_enabled = false;
|
||||
bool m_timer_resolution_increased = false;
|
||||
bool m_speed_limiter_enabled = true;
|
||||
bool m_throttler_enabled = true;
|
||||
|
||||
private:
|
||||
void InitializeUserDirectory();
|
||||
|
||||
Reference in New Issue
Block a user