| Age | Commit message (Collapse) | Author | 
|---|
|  | service: sfdnsres: unbreak build on FreeBSD | 
|  | src/core/hle/service/sockets/sfdnsres.cpp: In function 'Service::Sockets::NetDbError Service::Sockets::AddrInfoErrorToNetDbError(s32)':
src/core/hle/service/sockets/sfdnsres.cpp:66:10: error: 'EAI_NODATA' was not declared in this scope; did you mean 'EAI_NONAME'?
   66 |     case EAI_NODATA:
      |          ^~~~~~~~~~
      |          EAI_NONAME
src/core/hle/service/sockets/sfdnsres.cpp: In function 'std::vector<unsigned char> Service::Sockets::SerializeAddrInfo(const addrinfo*, s32, std::string_view)':
src/core/hle/service/sockets/sfdnsres.cpp:127:53: error: 'sockaddr_in' does not name a type; did you mean 'SockAddrIn'?
  127 |                 const auto addr = *reinterpret_cast<sockaddr_in*>(current->ai_addr);
      |                                                     ^~~~~~~~~~~
      |                                                     SockAddrIn
src/core/hle/service/sockets/sfdnsres.cpp:127:64: error: expected '>' before '*' token
  127 |                 const auto addr = *reinterpret_cast<sockaddr_in*>(current->ai_addr);
      |                                                                ^
src/core/hle/service/sockets/sfdnsres.cpp:127:64: error: expected '(' before '*' token
  127 |                 const auto addr = *reinterpret_cast<sockaddr_in*>(current->ai_addr);
      |                                                                ^
      |                                                                (
src/core/hle/service/sockets/sfdnsres.cpp:127:65: error: expected primary-expression before '>' token
  127 |                 const auto addr = *reinterpret_cast<sockaddr_in*>(current->ai_addr);
      |                                                                 ^
src/core/hle/service/sockets/sfdnsres.cpp:127:84: error: expected ')' before ';' token
  127 |                 const auto addr = *reinterpret_cast<sockaddr_in*>(current->ai_addr);
      |                                                                                    ^
      |                                                                                    )
src/core/hle/service/sockets/sfdnsres.cpp:148:53: error: 'sockaddr_in6' does not name a type; did you mean 'SockAddrIn6'?
  148 |                 const auto addr = *reinterpret_cast<sockaddr_in6*>(current->ai_addr);
      |                                                     ^~~~~~~~~~~~
      |                                                     SockAddrIn6
src/core/hle/service/sockets/sfdnsres.cpp:148:65: error: expected '>' before '*' token
  148 |                 const auto addr = *reinterpret_cast<sockaddr_in6*>(current->ai_addr);
      |                                                                 ^
src/core/hle/service/sockets/sfdnsres.cpp:148:65: error: expected '(' before '*' token
  148 |                 const auto addr = *reinterpret_cast<sockaddr_in6*>(current->ai_addr);
      |                                                                 ^
      |                                                                 (
src/core/hle/service/sockets/sfdnsres.cpp:148:66: error: expected primary-expression before '>' token
  148 |                 const auto addr = *reinterpret_cast<sockaddr_in6*>(current->ai_addr);
      |                                                                  ^
src/core/hle/service/sockets/sfdnsres.cpp:148:85: error: expected ')' before ';' token
  148 |                 const auto addr = *reinterpret_cast<sockaddr_in6*>(current->ai_addr);
      |                                                                                     ^
      |                                                                                     ) | 
|  | core: extract symbol reading | 
|  | Improvements for game modding with Skyline, DNS resolution | 
|  | OpenGL: flip front faces if Z scale is inverted | 
|  |  | 
|  | core: hid: Reduce the amount of data races | 
|  | Replace lock_guard with scoped_lock | 
|  |  | 
|  | CMakeLists: Enforce C4505 and C5245 | 
|  | These are similar to Wunused-function on gcc/clang | 
|  |  | 
|  | fix: remove #pragma once in .cpp file | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  | OpenGL: fix S8D24 to ABGR8 conversions | 
|  | OpenGL: fix cropping | 
|  | Vulkan: crop to screen dimensions if crop not explicitly requested | 
|  | dynarmic: Better interrupts | 
|  | native_clock: Use lfence with rdtsc | 
|  | shader_recompiler: support const buffer indirect addressing on OpenGL | 
|  |  | 
|  | service: jit: stub JIT service | 
|  |  | 
|  |  | 
|  | Improve usage of service host threads | 
|  | service: hid: Partially revert #8123 | 
|  |  | 
|  | Follow-up fixes for NVFlinger rewrite (Part 2) | 
|  | registered_cache: Prevent nullptr dereference when accumulating files | 
|  | dynarmic: Print stack trace on unrecognised instruction or other exception | 
|  | build: remove -fconcepts | 
|  |  | 
|  | It was needed on GCC versions not supporting `-std=c++20`, but GCC 10 and newer (required to compile yuzu) don't need it anymore | 
|  | Revert "texture_cache/util: Remove unneeded ReadBlockUnsafe" | 
|  |  | 
|  | texture_cache/util: Remove unneeded ReadBlockUnsafe | 
|  |  | 
|  | This call was reading GPU memory into the dst buffer, which is then overwritten by the SwizzleTexture call. | 
|  | configuration: Add Paranoid CPU accuracy level |