1. 08 Mar, 2021 4 commits
  2. 07 Mar, 2021 1 commit
  3. 06 Mar, 2021 6 commits
  4. 05 Mar, 2021 5 commits
  5. 04 Mar, 2021 1 commit
  6. 03 Mar, 2021 2 commits
  7. 02 Mar, 2021 4 commits
  8. 01 Mar, 2021 3 commits
  9. 28 Feb, 2021 4 commits
    • comex's avatar
      [network] Error handling reform · 2910aa77
      comex authored
      `network.cpp` has several error paths which either:
      - report "Unhandled host socket error=n" and return `SUCCESS`, or
      - switch on a few possible errors, log them, and translate them to
        Errno; the same switch statement is copied and pasted in multiple
        places in the code
      
      Convert these paths to use a helper function `GetAndLogLastError`, which
      is roughly the equivalent of one of the switch statements, but:
      - handling more cases (both ones that were already in `Errno`, and a few
        more I added), and
      - using OS functions to convert the error to a string when logging, so
        it'll describe the error even if it's not one of the ones in the
        switch statement.
        - To handle this, refactor the logic in `GetLastErrorMsg` to expose a
          new function `NativeErrorToString` which takes the error number
          explicitly as an argument.  And improve the Windows version a bit.
      
      Also, add a test which exercises two random error paths.
      2910aa77
    • bunnei's avatar
      Merge pull request #6007 from bunnei/ldn-error · 9e9341f4
      bunnei authored
      core: hle: ldn: Error out on call to Initialization.
      9e9341f4
    • Morph's avatar
      Merge pull request #5276 from german77/gestures · ee9ebeeb
      Morph authored
      HID: Implement gestures
      ee9ebeeb
    • german's avatar
      e895ab7d
  10. 27 Feb, 2021 6 commits
  11. 26 Feb, 2021 1 commit
  12. 25 Feb, 2021 1 commit
  13. 24 Feb, 2021 1 commit
  14. 23 Feb, 2021 1 commit