Skip to content

Commit

Permalink
Rumble iOS device if Player1 controller does not support it
Browse files Browse the repository at this point in the history
  • Loading branch information
XITRIX committed Oct 27, 2024
1 parent 88b64d2 commit 955d5d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/utils/Settings.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class Settings : public Singleton<Settings> {
[[nodiscard]] int get_volume() const { return m_volume; }

void set_use_hw_decoding(bool hw_decoding) { m_use_hw_decoding = hw_decoding; }
[[nodiscard]] bool use_hw_decoding() const { return m_use_hw_decoding; }
[[nodiscard]] bool use_hw_decoding() const { return true; } //m_use_hw_decoding; }

void set_keyboard_type(KeyboardType type) { m_keyboard_type = type; }
[[nodiscard]] KeyboardType get_keyboard_type() const { return m_keyboard_type; }
Expand Down
2 changes: 1 addition & 1 deletion extern/borealis

0 comments on commit 955d5d2

Please sign in to comment.