Skip to content
Snippets Groups Projects
  1. Jun 05, 2019
  2. Jun 04, 2019
  3. Jun 03, 2019
    • Lioncash's avatar
      yuzu/bootmanager: Treat the resolution factor as a u32 · e32bf646
      Lioncash authored
      Treating it as a u16 can result in a sign-conversion warning when
      performing arithmetic with it, as u16 promotes to an int when aritmetic
      is performed on it, not unsigned int.
      
      This also makes the interface more uniform, as the layout interface now
      operates on u32 across the board.
      e32bf646
  4. May 29, 2019
  5. May 27, 2019
  6. May 26, 2019
  7. May 25, 2019
  8. May 23, 2019
  9. May 19, 2019
  10. May 18, 2019
    • Lioncash's avatar
      kernel/svc: Mark GetThreadList() and UnmapProcessCodeMemory() as internally linked · d5cce864
      Lioncash authored
      These are only used from within this translation unit, so they don't
      need to have external linkage. They were intended to be marked with this
      anyways to be consistent with the other service functions.
      d5cce864
    • Lioncash's avatar
      service/am: Add missing return in error case for IStorageAccessor's Read()/Write(). · 88c263ee
      Lioncash authored
      Previously this would fall through and return successfully, despite
      being an out of bounds read or write.
      88c263ee
    • Lioncash's avatar
      core/kernel/object: Rename ResetType enum members · a47aaa7f
      Lioncash authored
      Renames the members to more accurately indicate what they signify.
      "OneShot" and "Sticky" are kind of ambiguous identifiers for the reset
      types, and can be kind of misleading. Automatic and Manual communicate
      the kind of reset type in a clearer manner. Either the event is
      automatically reset, or it isn't and must be manually cleared.
      
      The "OneShot" and "Sticky" terminology is just a hold-over from Citra
      where the kernel had a third type of event reset type known as "Pulse".
      Given the Switch kernel only has two forms of event reset types, we
      don't need to keep the old terminology around anymore.
      a47aaa7f
    • Weiyi Wang's avatar
      HLE/IPC: HLEContext can memorize the client thread and use it for SleepClientThread · 8d634238
      Weiyi Wang authored
      This reduces the boilerplate that services have to write out the current thread explicitly. Using current thread instead of client thread is also semantically incorrect, and will be a problem when we implement multicore (at which time there will be multiple current threads)
      8d634238
  11. May 10, 2019
    • Lioncash's avatar
      service/set: Correct and simplify behavior related to copying language codes · c823cf65
      Lioncash authored
      This corrects cases where it was possible to write more entries into the
      write buffer than were requested. Now, we check the size of the buffer
      before actually writing into them.
      
      We were also returning the wrong value for
      GetAvailableLanguageCodeCount2(). This was previously returning 64, but
      only 17 should have been returned. 64 entries is the size of the static
      array used in MakeLanguageCode() within the service binary itself, but
      isn't the actual total number of language codes present.
      c823cf65
  12. May 07, 2019
  13. May 04, 2019
  14. May 01, 2019
  15. Apr 29, 2019
Loading