1. 09 Dec, 2020 4 commits
  2. 08 Dec, 2020 14 commits
  3. 07 Dec, 2020 20 commits
  4. 06 Dec, 2020 2 commits
    • comex's avatar
      hle: Type check ResponseBuilder::Push arguments, and fix use in vi.cpp · 3373149f
      comex authored
      - Add a type check so that calling Push with an invalid type produces a
        compile error rather than a linker error.
      
      - vi.cpp was calling Push with a variable of type `std::size_t`.
        There's no explicit overload for `size_t`, but there is one for `u64`,
        which on most platforms is the same type as `size_t`.  On macOS,
        however, it isn't: both types are 64 bits, but `size_t` is `unsigned
        long` and `u64` is `unsigned long long`.  Regardless, it makes more
        sense to explicitly use `u64` here instead of `size_t`.
      3373149f
    • comex's avatar
      CMakeLists,network: Create YUZU_UNIX macro to replace __unix__ · 0e122c13
      comex authored
      __unix__ is not predefined on Apple platforms even though they are Unix.
      0e122c13