1. 19 Apr, 2022 1 commit
    • Kyle K's avatar
      ui: translate hat directions · c99712ea
      Kyle K authored
      QObject ends up being its own translation context. But this works in our
      favor. GetButtonName and GetDirectionName will share one translation the
      directions such as "Left" "Right" and the ConfigureInputPlayer context
      will contain translations that show up in the form, in places that aren't
      those buttons.
      c99712ea
  2. 18 Apr, 2022 2 commits
  3. 17 Apr, 2022 1 commit
  4. 16 Apr, 2022 6 commits
  5. 15 Apr, 2022 2 commits
  6. 14 Apr, 2022 5 commits
  7. 13 Apr, 2022 4 commits
  8. 12 Apr, 2022 9 commits
  9. 11 Apr, 2022 3 commits
    • Jan Beich's avatar
      service: sfdnsres: add missing includes for some BSDs after 82d46a97 · d13e48e0
      Jan Beich authored
      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);
            |                                                                                     ^
            |                                                                                     )
      d13e48e0
    • Fernando S's avatar
      Merge pull request #8180 from liamwhite/symbols · b86cfe15
      Fernando S authored
      core: extract symbol reading
      b86cfe15
    • Kyle K's avatar
      ui: Set Link Color when setting theme · 38dd6dc1
      Kyle K authored
      Long story short, QT doesn't allow the link colors to be set via their stylesheets.
      
      There are two ways to work with this, specify the color manually for every link (See the About dialog) The other way is to change the default palette.
      
      IsDarkTheme is copy/pasted from src/yuzu/debugger/wait_tree.cpp
      38dd6dc1
  10. 10 Apr, 2022 2 commits
  11. 09 Apr, 2022 3 commits
  12. 08 Apr, 2022 2 commits