1. 01 Apr, 2019 1 commit
  2. 31 Mar, 2019 3 commits
  3. 30 Mar, 2019 8 commits
  4. 29 Mar, 2019 5 commits
  5. 28 Mar, 2019 6 commits
  6. 27 Mar, 2019 11 commits
  7. 26 Mar, 2019 4 commits
  8. 24 Mar, 2019 2 commits
    • Lioncash's avatar
      core/cheat_engine: Make MemoryReadImpl and MemoryWriteImpl internally linked · b26481c9
      Lioncash authored
      These don't need to be visible outside of the translation unit, so they
      can be enclosed within an anonymous namespace.
      b26481c9
    • Lioncash's avatar
      core/core_timing: Make callback parameters consistent · c5d41fd8
      Lioncash authored
      In some cases, our callbacks were using s64 as a parameter, and in other
      cases, they were using an int, which is inconsistent.
      
      To make all callbacks consistent, we can just use an s64 as the type for
      late cycles, given it gets rid of the need to cast internally.
      
      While we're at it, also resolve some signed/unsigned conversions that
      were occurring related to the callback registration.
      c5d41fd8