1. 25 Jan, 2023 4 commits
    • Morph's avatar
      input_common: Make use of StoppableTimedWait · c55147b2
      Morph authored
      c55147b2
    • Morph's avatar
      polyfill_thread: Implement StoppableTimedWait · 9b0563fa
      Morph authored
      
      
      StoppableTimedWait allows for a timed wait to be stopped immediately after a stop is requested.
      This is useful in cases where long duration thread sleeps are needed and allows for immediate joining of waiting threads after a stop is requested.
      
      Co-Authored-By: default avatarliamwhite <liamwhite@users.noreply.github.com>
      9b0563fa
    • Narr the Reg's avatar
      Merge pull request #9679 from jbeich/libc++ · b82a0989
      Narr the Reg authored
      input_common: unbreak build with libc++ (missing std::ranges::find_if)
      b82a0989
    • Jan Beich's avatar
      input_common: add missing header for libc++ after 340f15d1 · 20c70848
      Jan Beich authored
      src/input_common/drivers/joycon.cpp:187:26: error: no member named 'find_if' in namespace 'std::ranges'
                  std::ranges::find_if(left_joycons, [](auto& device) { return !device->IsConnected(); });
                  ~~~~~~~~~~~~~^
      src/input_common/drivers/joycon.cpp:193:54: error: no member named 'find_if' in namespace 'std::ranges'
              const auto unconnected_device = std::ranges::find_if(
                                              ~~~~~~~~~~~~~^
      src/input_common/drivers/joycon.cpp:393:51: error: no member named 'find_if' in namespace 'std::ranges'
              const auto matching_device = std::ranges::find_if(
                                           ~~~~~~~~~~~~~^
      src/input_common/drivers/joycon.cpp:402:51: error: no member named 'find_if' in namespace 'std::ranges'
              const auto matching_device = std::ranges::find_if(
                                           ~~~~~~~~~~~~~^
      20c70848
  2. 24 Jan, 2023 2 commits
  3. 23 Jan, 2023 1 commit
  4. 22 Jan, 2023 7 commits
  5. 21 Jan, 2023 3 commits
  6. 20 Jan, 2023 23 commits