- Aug 14, 2018
-
-
Lioncash authored
Previously core itself was the library containing the code to gather common information (build info, CPU info, and OS info), however all of this isn't core-dependent and can be moved to the common code and use the common interfaces. We can then just call those functions from the core instead. This will allow replacing our CPU detection with Xbyak's which has better detection facilities than ours. It also keeps more architecture-dependent code in common instead of core.
-
- Jul 21, 2018
-
-
Lioncash authored
Instead of using an unsigned int as a parameter and expecting a user to always pass in the correct values, we can just convert the enum into an enum class and use that type as the parameter type instead, which makes the interface more type safe. We also get rid of the bookkeeping "NUM_" element in the enum by just using an unordered map. This function is generally low-frequency in terms of calls (and I'd hope so, considering otherwise would mean we're slamming the disk with IO all the time) so I'd consider this acceptable in this case.
-
- Jul 03, 2018
-
-
James Rowe authored
-
- Jun 27, 2018
-
-
bunnei authored
-
- May 10, 2018
-
-
bunnei authored
-
- Apr 26, 2018
-
-
Lioncash authored
LOG_GENERIC usages will be amended in a follow-up to keep API changes separate from interface changes, as it will require removing a parameter from the relevant function in the VMManager class.
-
- Mar 27, 2018
- Jan 20, 2018
-
-
River City Ransomware authored
* Port citra #3352 to yuzu This change allows non x86_64 architectures to compile yuzu by skipping the building of dynarmic * Fixed clang-format errors * fixes more clang-format errors
-
- Jan 13, 2018
-
-
James Rowe authored
-
James Rowe authored
-
bunnei authored
-
- Jan 12, 2018
-
-
MerryMage authored
-
- Sep 19, 2017
-
-
B3n30 authored
* WebService: Verify username and token; Log errors in PostJson * Fixup: added docstrings to the functions * Webservice: Added Icons to the verification, imrpved error detection in cpr, fixup nits * fixup: fmt warning
-
- Aug 26, 2017
- Aug 04, 2017
- Jul 18, 2017
-
-
bunnei authored
-
- Jul 11, 2017
- May 24, 2017