| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-06-09 | kernel/svc: Amend naming for TotalMemoryUsage in svcGetInfo() | Lioncash | |
| Disambiguates and makes the name a little more consistent with TotalPhysicalMemoryUsed. | |||
| 2019-06-09 | kernel/svc: Remove duplicate enum entry in svcGetInfo() | Lioncash | |
| 2019-06-07 | constants: Extract backup JPEG used by account services | Zach Hilman | |
| 2019-06-07 | Merge pull request #2514 from ReinUsesLisp/opengl-compat | Zach Hilman | |
| video_core: Drop OpenGL core in favor of OpenGL compatibility | |||
| 2019-06-06 | kernel_executable: Optimize BLZ decompression | Zach Hilman | |
| 2019-06-06 | Merge pull request #2549 from lioncash/header | Zach Hilman | |
| kernel/process: Remove unused boost header include | |||
| 2019-06-06 | Merge pull request #2551 from lioncash/dtor | bunnei | |
| service/ns: Add missing override specifiers | |||
| 2019-06-05 | Merge pull request #2419 from DarkLordZach/srv-lr-iface | bunnei | |
| lr: Add command handler skeletons for Open*LocationResolver | |||
| 2019-06-05 | service/ns: Add missing override specifiers | Lioncash | |
| 2019-06-05 | Merge pull request #2526 from lioncash/global | Zach Hilman | |
| core/telemetry_session: Remove usages of the global system accessor | |||
| 2019-06-05 | Merge pull request #2545 from lioncash/timing | Zach Hilman | |
| core/core_timing_util: Use std::chrono types for specifying time units | |||
| 2019-06-05 | Merge pull request #2510 from SciresM/desired_language | Zach Hilman | |
| Implement/Fix IApplicationFunctions::GetDesiredLanguage | |||
| 2019-06-05 | kernel/process: Remove unused boost header include | Lioncash | |
| Boost headers typically include a lot of other headers, so removing this can prevent a bit of unnecessary compiler churn when building. | |||
| 2019-06-05 | game_list: Accept *.kip as a file extension of executables | Zach Hilman | |
| 2019-06-05 | loader: Add recognition for KIP file type | Zach Hilman | |
| 2019-06-05 | loader: Add KIP and INI file parser-specific errors | Zach Hilman | |
| 2019-06-05 | loader: Add AppLoader_KIP for KIP files | Zach Hilman | |
| 2019-06-05 | program_metadata: Add function to load meta from raw parameters | Zach Hilman | |
| Needed for KIP loading as KIPs do not have an NPDM but do have the essential parts of the data within. | |||
| 2019-06-05 | partition_data_manager: Remove KIP processing and use FileSys | Zach Hilman | |
| Previously, this TU contained the necessary headers to parse KIP/INI but now it should just use the FileSys class. | |||
| 2019-06-05 | file_sys: Add classes to parse KIP1 and INI1 files | Zach Hilman | |
| 2019-06-04 | core/core_timing_util: Amend casing of cyclesTo* functions | Lioncash | |
| Makes the casing consistent with all of our general function naming conventions. | |||
| 2019-06-04 | core/core_timing_util: Use std::chrono types for specifying time units | Lioncash | |
| Makes the interface more type-safe and consistent in terms of return values. | |||
| 2019-06-04 | core/core_timing_utils: Simplify overload set | Lioncash | |
| Removes unused overloads, simplifying the overall interface, deduplicating some code. | |||
| 2019-06-03 | yuzu/bootmanager: Treat the resolution factor as a u32 | Lioncash | |
| 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. | |||
| 2019-05-30 | Merge pull request #1931 from DarkLordZach/mii-database-1 | bunnei | |
| mii: Implement MiiManager backend and several mii service commands | |||
| 2019-05-30 | rasterizer_opengl: Remove OpenGL core profile | ReinUsesLisp | |
| 2019-05-29 | Merge pull request #2518 from ReinUsesLisp/sdl2-window | bunnei | |
| yuzu_cmd: Split emu_window OpenGL implementation into its own file | |||
| 2019-05-29 | core/core: Remove unnecessary includes | Lioncash | |
| The contents of these includes aren't used anywhere in this translation unit. | |||
| 2019-05-28 | core/loader: Remove LoadKernelSystemMode | Lioncash | |
| This is a hold-over from Citra and doesn't apply to yuzu. | |||
| 2019-05-28 | core/telemetry_session: Remove unnecessary web service nulling out in destructor | Lioncash | |
| This will automatically occur when the backend instance goes out of scope at the end of the destructor's execution. | |||
| 2019-05-28 | core/telemetry_session: Remove usages of the global system accessor | Lioncash | |
| Makes the dependency explicit in the TelemetrySession's interface instead of making it a hidden dependency. This also revealed a hidden issue with the way the telemetry session was being initialized. It was attempting to retrieve the app loader and log out title-specific information. However, this isn't always guaranteed to be possible. During the initialization phase, everything is being constructed. It doesn't mean an actual title has been selected. This is what the Load() function is for. This potentially results in dead code paths involving the app loader. Instead, we explicitly add this information when we know the app loader instance is available. | |||
| 2019-05-28 | core/telemetry_session: Explicitly delete copy and move constructors | Lioncash | |
| NonCopyable is misleading here. It also makes the class non-moveable as well, so we can be explicit about this. | |||
| 2019-05-28 | core/telemetry_session: Remove unused include | Lioncash | |
| 2019-05-27 | Merge pull request #2519 from lioncash/sign | bunnei | |
| loader/nso, core/core_timing_util: Silence sign-comparison warning | |||
| 2019-05-26 | ncm: Implement LR OpenAddOnContentLocationResolver (2) | Zach Hilman | |
| Returns an object of type IAddOnContentLocationResolver for the provided StorageId. | |||
| 2019-05-26 | ncm: Implement LR OpenRegisteredLocationResolver (1) | Zach Hilman | |
| Returns an object of type IRegisteredLocationResolver for the StorageId. | |||
| 2019-05-26 | ncm: Implement LR OpenLocationResolver (0) | Zach Hilman | |
| Returns an object of type ILocationResolver with the provided StorageId. | |||
| 2019-05-26 | loader: Move NSO module tracking to AppLoader | Zach Hilman | |
| Also cleanup of general stuff | |||
| 2019-05-26 | emu_window: Pass OnMinimalClientAreaChangeRequest argument by copy | ReinUsesLisp | |
| There's no performance improvement in passing an unsigned pair by reference. | |||
| 2019-05-25 | Merge pull request #2509 from lioncash/aoc | bunnei | |
| service/aoc_u: Minor cleanup | |||
| 2019-05-25 | core_timing_util: Silence sign-comparison warnings | Lioncash | |
| We can just make the conversion explicit instead of implicit here to silence -Wsign-compare warnings. | |||
| 2019-05-25 | loader/nso: Silence sign-comparison warning | Lioncash | |
| This was previously performing a size_t == int comparison. Silences a -Wsign-compare warning. | |||
| 2019-05-25 | prepo: Save reports from PlayReport service | Zach Hilman | |
| Logs a lot of seemingly innocuous telemetry games generate. | |||
| 2019-05-25 | fatal: Save report on fatal:u call | Zach Hilman | |
| Matches offical behavior with creport and replaces old log/text based report system. | |||
| 2019-05-25 | service: Save report on unimplemented function call | Zach Hilman | |
| 2019-05-25 | applets/error: Save report on error applet | Zach Hilman | |
| This matches official behavior with the erpt/eclct/eupld service chain. | |||
| 2019-05-25 | applets: Save report on stubbed applet | Zach Hilman | |
| This also reworks the applet data storage to be peekable. | |||
| 2019-05-25 | svc: Save report on call to svcBreak | Zach Hilman | |
| 2019-05-25 | core: Add Reporter class to take/save reports | Zach Hilman | |
| 2019-05-25 | settings: Add 'Reporting Services' config option | Zach Hilman | |
| Full enable/disable for all reports. | |||
