Skip to content
Snippets Groups Projects
  1. May 26, 2019
  2. May 21, 2019
  3. May 09, 2019
    • Lioncash's avatar
      configuration/config: Move config loading and saving to functions based off groups · 4ef3329f
      Lioncash authored
      Over time our config values have grown quite numerous in size.
      Unfortunately it also makes the single functions we have for loading and
      saving values more error prone.
      
      For example, we were loading the core settings twice when they only
      should have been loaded once. In another section, a variable was
      shadowing another variable used to load settings from a completely
      different section.
      
      Finally, in one other case, there was an extraneous endGroup() call used
      that didn't need to be done. This was essentially dead code and also a
      bug waiting to happen.
      
      This separates the section loading code into its own separate functions.
      This keeps variables only visible to the code that actually needs it,
      and makes it much easier to visually see the end of each individual
      configuration group. It also makes it much easier to visually catch bugs
      during code review.
      
      While we're at it, this also uses QStringLiteral instead of raw string
      literals, which both avoids constructing a lot of QString instances, but
      also makes it much easier to disable implicit ASCII to QString and
      vice-versa in the future via setting QT_NO_CAST_FROM_ASCII and
      QT_NO_CAST_TO_ASCII as compilation flags.
      4ef3329f
  4. Apr 20, 2019
  5. Apr 11, 2019
  6. Apr 08, 2019
  7. Mar 29, 2019
    • fearlessTobi's avatar
      core/yuzu: Remove enable_nfc setting · ff7e6a42
      fearlessTobi authored
      This was initially added to prevent problems from stubbed/not implemented NFC services, but as we never encountered such and as it's only used in a deprecated function anyway, I guess we can just remove it to prevent more clutter of the settings.
      ff7e6a42
  8. Mar 16, 2019
  9. Mar 07, 2019
  10. Feb 07, 2019
  11. Jan 08, 2019
  12. Jan 01, 2019
  13. Dec 25, 2018
    • Zach Hilman's avatar
      qt: Add setting to prompt for user on game boot · 4d61ac08
      Zach Hilman authored
      Using the QtProfileSelectorDialog, this implementation is trivial. This mimics the real switch behavior of asking which user on every game boot, but it is default disabled as that might get inconvenient.
      4d61ac08
  14. Dec 18, 2018
    • zhupengfei's avatar
      yuzu, video_core: Screenshot functionality · a2be4930
      zhupengfei authored
      Allows capturing screenshot at the current internal resolution (native for software renderer), but a setting is available to capture it in other resolutions. The screenshot is saved to a single PNG in the current layout.
      a2be4930
  15. Dec 05, 2018
  16. Dec 04, 2018
  17. Dec 03, 2018
  18. Nov 20, 2018
  19. Nov 19, 2018
  20. Nov 12, 2018
  21. Nov 02, 2018
    • Zach Hilman's avatar
      game_list: Make add-ons column optional · 2d2ef05d
      Zach Hilman authored
      As the add-ons column takes the most processing time out of any (as it needs to search registration for updates/dlc, patch control NCAs, search for mods, etc.), an option was added to disable it. This does not affect the application of add-ons. In large game collections, this decreases game list refresh time by as much as 70%.
      2d2ef05d
  22. Oct 29, 2018
  23. Oct 24, 2018
  24. Oct 23, 2018
  25. Oct 16, 2018
  26. Oct 07, 2018
  27. Oct 02, 2018
  28. Sep 08, 2018
Loading