Skip to content
  1. Dec 09, 2020
  2. Dec 08, 2020
  3. Dec 07, 2020
  4. Dec 06, 2020
    • 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
Loading