Skip to content
Snippets Groups Projects
  1. Nov 25, 2021
  2. Oct 07, 2021
  3. Jan 24, 2021
  4. Jan 01, 2021
  5. Nov 16, 2020
  6. Sep 05, 2020
  7. Sep 04, 2020
  8. Aug 29, 2020
  9. Aug 27, 2020
    • Lioncash's avatar
      input_common: Eliminate most global state · 9e1b0af2
      Lioncash authored
      Abstracts most of the input mechanisms under an InputSubsystem class
      that is managed by the frontends, eliminating any static constructors
      and destructors. This gets rid of global accessor functions and also
      allows the frontends to have a more fine-grained control over the
      lifecycle of the input subsystem.
      
      This also makes it explicit which interfaces rely on the input subsystem
      instead of making it opaque in the interface functions. All that remains
      to migrate over is the factories, which can be done in a separate
      change.
      9e1b0af2
  10. Aug 26, 2020
  11. Sep 17, 2019
  12. Aug 02, 2019
  13. Jun 06, 2019
    • Lioncash's avatar
      yuzu/configuration: Make all widgets and dialogs aware of language changes · c09ff382
      Lioncash authored
      To prepare for translation support, this makes all of the widgets
      cognizant of the language change event that occurs whenever
      installTranslator() is called and automatically retranslates their text
      where necessary.
      
      This is important as calling the backing UI's retranslateUi() is often
      not enough, particularly in cases where we add our own strings that
      aren't controlled by it. In that case we need to manually refresh the
      strings ourselves.
      c09ff382
  14. Jun 05, 2019
  15. May 19, 2019
  16. Dec 05, 2018
  17. Dec 02, 2018
    • Lioncash's avatar
      yuzu/configuration/configure_input: Default destructor in the cpp file · f3253d0f
      Lioncash authored
      The previous code could potentially be a compilation issue waiting to
      occur, given we forward declare the type for a std::unique_ptr. If the
      complete definition of the forward declared type isn't visible in a
      translation unit that the class is used in, then it would fail to
      compile.
      
      Defaulting the destructor in a cpp file ensures the std::unique_ptr's
      destructor is only invoked where its complete type is known.
      f3253d0f
  18. Nov 30, 2018
  19. Nov 27, 2018
  20. Nov 22, 2018
  21. Nov 19, 2018
Loading