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 fe66292
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if (APPLE AND PLATFORM_DESKTOP)
endif ()

if (PLATFORM_IOS OR PLATFORM_TVOS)
set(ENABLE_ARC OFF)
# set(ENABLE_ARC OFF)
endif ()

# toolchain
Expand Down
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 fe66292

Please sign in to comment.