summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-09-22Merge pull request #2895 from FearlessTobi/debug-logsDavid
service/acc: Lower log severity from INFO to DEBUG
2019-09-22Merge pull request #2873 from ogniK5377/new-ioctlsFernando Sahmkow
Initial implementation of Ioctl2 & Ioctl3
2019-09-22Merge pull request #2884 from ogniK5377/deglobal-sys-servicesFernando Sahmkow
Remove usage of System::CurrentInterface() from most services
2019-09-22service/acc: Lower log severity from INFO to DEBUGFearlessTobi
According to ogniK, this should have always been Debug and not Info.
2019-09-22Merge pull request #2870 from FernandoS27/multi-drawDavid
Implement a MME Draw commands Inliner and correct host instance drawing
2019-09-22Merge pull request #2891 from FearlessTobi/rod-texFernando Sahmkow
video_core: Implement RGBX16F and lower Surface Copy log severity
2019-09-22Merge pull request #2867 from ReinUsesLisp/configure-framebuffers-cleanDavid
gl_rasterizer: Remove unused code paths from ConfigureFramebuffers
2019-09-22Maxwell3D: Corrections and refactors to MME instance refactorFernando Sahmkow
2019-09-22removed unneeded semicolonDavid Marcec
2019-09-22Merge pull request #2893 from ogniK5377/revert-dlzDavid
Revert "Merge pull request #2709 from DarkLordZach/oss-ext-fonts-1"
2019-09-22Revert "Merge pull request #2709 from DarkLordZach/oss-ext-fonts-1"David Marcec
This reverts commit fa1c60c33ef88c6cd0b72da46842dc9098db712d, reversing changes made to e34899067b60a69bca02761bd1290c6824bb559a.
2019-09-22Removed reference to core timing to nvflinger and used system insteadDavid Marcec
2019-09-22marked controller constructors as explicitDavid Marcec
2019-09-22RebaseDavid Marcec
2019-09-22RebaseDavid Marcec
2019-09-22Deglobalize System: ViDavid Marcec
2019-09-22Deglobalize System: TimeDavid Marcec
2019-09-22RebaseDavid Marcec
2019-09-22Deglobalize System: NvFlingerDavid Marcec
2019-09-22RebaseDavid Marcec
2019-09-22Deglobalize System: NimDavid Marcec
2019-09-22Deglobalize System: NifmDavid Marcec
2019-09-22Deglobalize System: NFPDavid Marcec
2019-09-22Deglobalize System: LDRDavid Marcec
2019-09-22Deglobalize System: IRSDavid Marcec
2019-09-22Deglobalize System: HidDavid Marcec
2019-09-22Deglobalize System: FriendDavid Marcec
2019-09-22Deglobalize System: FatalDavid Marcec
2019-09-22Deglobalize System: BtmDavid Marcec
2019-09-22Deglobalize System: BtdrvDavid Marcec
2019-09-22Deglobalize System: AocDavid Marcec
2019-09-22Deglobalize System: AmDavid Marcec
2019-09-22Merge pull request #2535 from DarkLordZach/cheat-v2David
cheat_engine: Use Atmosphere's Cheat VM and fix cheat crash
2019-09-22Merge pull request #2709 from DarkLordZach/oss-ext-fonts-1David
system_archive: Move shared font data to system_archive and fix extended font data
2019-09-21pl_u: Use kernel physical memoryZach Hilman
2019-09-21dmnt_cheat_vm: Default initialize structure valuesZach Hilman
2019-09-22Merge pull request #2886 from MysticExile/dynarmicDavid
externals: Update dynarmic to master
2019-09-22server side clang format fix2David Marcec
2019-09-22Use clang-format provided by build serverDavid Marcec
2019-09-21pl_u: Remove excess static qualifierZach Hilman
2019-09-21pl_u: Use OSS system archives if real archives don't existZach Hilman
2019-09-22Merge pull request #2612 from DarkLordZach/prepo-newDavid
prepo: Implement New, System, and Non-User variants of SaveReport
2019-09-21dmnt_cheat_vm: Make Cheat VM compliant to code styleZach Hilman
2019-09-21core: Initialize cheats after load to avoid VMManager crashZach Hilman
This used to occur due to the VMManager being nullptr at the time cheats were registered (during load, but before it was done). This is bypassed by not accessing the VMManager for offset data until load is complete,
2019-09-21core: Update RegisterCheatList for new VMZach Hilman
2019-09-21patch_manager: Update cheat parsing for new VMZach Hilman
2019-09-21nso: Pass build ID directlyZach Hilman
As opposed to converting to string and then back to hex array
2019-09-21cheat_engine: Move to memory and strip VMZach Hilman
This is to go with the Atmosphere VM port, now it just contains the callbacks needed for the interface between DmntCheatVm and yuzu, along with the cheat parsers.
2019-09-21memory: Port Atmosphere's DmntCheatVmZach Hilman
This was done because the current VM contained many inaccuracies and this also allows cheats to have identical behavior between hardware and yuzu.
2019-09-21log: Add logging class for Cheat EngineZach Hilman
This is better than just using something like Common.Filesystem or Common.Memory