aboutsummaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2018-10-24yuzu/main: Notify user of loading errors with Amiibo dataLioncash
We shouldn't silently continue if loading failed, since the general assumption is that no messages showing up implicitly indicates success.
2018-10-24Merge pull request #1468 from DarkLordZach/profile-manager-uiMat M
qt: Add UI to manage emulated user profiles
2018-10-24npad: Remove unused controller variable from OnInit()Lioncash
This also gets rid of variable shadowing related to the lambda parameter a little bit below this code as well.
2018-10-24perf_stats: Remove unused variable within DoFrameLimiting()Lioncash
This hasn't been used since ba8ff096fdc9f7ab101851c4cd06c3244a7d84c3
2018-10-24aoc_u: Make use of previously-unused CheckAOCTitleIDMatchesBase() functionLioncash
We can just call the function instead of duplicating the code here. This also prevents an unused function warning. We also don't need to take the lambda capture by reference. It's just a u64 value, so by value is fine here.
2018-10-24vfs: Handle failure of file reading within VfsRawCopy()Lioncash
Also gets rid of an unused variable.
2018-10-24key_manager: Remove unused variable in DeriveBase()Lioncash
2018-10-23Merge pull request #1551 from ogniK5377/improved-svcbreakbunnei
Added break types to svcBreak
2018-10-23profile_manager: Create save data if it doesn't exist on useZach Hilman
2018-10-23acc: Fix account UUID duplication errorZach Hilman
2018-10-23configure_system: Clear selection after user deleteZach Hilman
2018-10-23profile_manager: Load user icons, names, and UUIDs from system saveZach Hilman
2018-10-23acc: Load user images from config dirZach Hilman
2018-10-23am: Pass current user UUID to launch parametersZach Hilman
2018-10-23profile_manager: Load users from emulator settingsZach Hilman
2018-10-23settings: Add users and current_user settings and remove usernameZach Hilman
2018-10-23Added Amiibo support (#1390)David
* Fixed conflict with nfp * Few fixups for nfc * Conflict 2 * Fixed AttachAvailabilityChangeEvent * Conflict 3 * Fixed byte padding * Refactored amiibo to not reside in "System" * Removed remaining references of nfc from system * used enum for Nfc GetStateOld * Added missing newline * Moved file operations to front end * Conflict 4 * Amiibos now use structs and added mutexes * Removed amiibo_path
2018-10-23Merge pull request #1515 from DarkLordZach/dlc-lfsbunnei
patch_manager: Add support for LayeredFS on DLC RomFS
2018-10-23Merge pull request #1540 from lioncash/handlebunnei
kernel/process: Make the handle table per-process
2018-10-23Added assertion failed, reworked logging levelsDavid Marcec
2018-10-23Added break types to svcBreakDavid Marcec
There seems to be more such as type 1, and 2. Unsure what these currently are but when a game hits them we can investigate and add the rest
2018-10-22Merge pull request #1545 from DarkLordZach/psmbunnei
psm: Add psm service and stub commands 0 and 1
2018-10-22Merge pull request #1538 from lioncash/querybunnei
svc: Fix vma boundary check in svcQueryMemory
2018-10-21psm: Stub GetChargerTypeZach Hilman
Used by LovePotion Lua Homebrew. Stubbed as connected to official Nintendo Switch dock.
2018-10-21service: Add the basic skeleton for the NPNS servicesLioncash
2018-10-21hid: Update service function table for hidbusLioncash
Updated based off information provided by Switchbrew.
2018-10-21am: Add the basic skeleton for the tcap serviceLioncash
Added based off information provided by Switchbrew.
2018-10-21am: Update service function tablesLioncash
Updated based off information from Switchbrew
2018-10-21prepo: Update service function table.Lioncash
Also introduces the new prepo:a2 service. Updated based off information provided by Switchbrew.
2018-10-21lbl: Update service function table namesLioncash
Updated based off information provided by Switchbrew.
2018-10-20psm: Stub GetBatteryChargePercentageZach Hilman
Used by LovePotion Lua Homebrew. Stubbed to return 100% charge.
2018-10-20service: Add skeleton for psm serviceZach Hilman
Seems to be the power controller. Listed in switchbrew under the category PTM services.
2018-10-20kernel/process: Make the handle table per-processLioncash
In the kernel, there isn't a singular handle table that everything gets tossed into or used, rather, each process gets its own handle table that it uses. This currently isn't an issue for us, since we only execute one process at the moment, but we may as well get this out of the way so it's not a headache later on.
2018-10-20svc: Fix vma boundary check in svcQueryMemoryLioncash
This should be comparing against the queried process' vma_map, not the current process'. The only reason this hasn't become an issue yet is we currently only handle one process being active at any time.
2018-10-20Added auto controller switching to supported controllers and single joycon ↵David Marcec
button rotation This is a subset of the better-hid-2 changes, this fixes input in various games which don't support dual joycons. This pr will search for the next best controller which is supported by the current game
2018-10-19Merge pull request #1520 from lioncash/sanbunnei
svc: Add missing sanitizing checks for MapSharedMemory/UnmapSharedMemory
2018-10-19Merge pull request #1526 from lioncash/svc-idbunnei
service: Update function tables
2018-10-19Merge pull request #1530 from DarkLordZach/aoc-8bunnei
aoc_u: Stub GetAddOnContentListChangedEvent
2018-10-19Merge pull request #1516 from lioncash/hidbunnei
hid: Minor cleanup-related changes
2018-10-19aoc_u: Stub GetAddOnContentListChangedEventZach Hilman
This event signals the game when new DLC is purchased from the eShop while the game is running. Since, for the forseeable future, yuzu will not have this ability, it seems safe to stub with a dummy event that will never fire. This is needed to boot Sonic Mania Plus (update v1.04).
2018-10-19crypto: Use compressed sizes in offset calculation for KIP decompressionZach Hilman
Fixes a fatal crash on start when deriving keys.
2018-10-19vfs: Remove InterpretAsDirectory and related functionsZach Hilman
When writing VFS, it initally seemed useful to include a function to in-place convert container files into directories in one homogenous directory structure, but re-evaluating it now there have been plenty of chances to use it and there has always been a better way. Removing as it is unused and likely will not be used.
2018-10-20Stubbed home blockingDavid Marcec
Needed by arms due to new hid rework
2018-10-19es: Update service function tablesLioncash
Updated based off information provided by Switchbrew.
2018-10-19audio: Update service function tablesLioncash
Updated based off information provided by Switchbrew.
2018-10-19omm: Update service function tablesLioncash
Updated based off information provided by Switchbrew.
2018-10-19nifm: Update service function tablesLioncash
Updated based off information provided by switchbrew.
2018-10-19hid: Update service function tablesLioncash
Updated based off information provided by Switchbrew.
2018-10-19nim: Add the basic skeleton of the nim:eca serviceLioncash
Added based off information provided by Switchbrew
2018-10-19ns: Update service function tableLioncash
Updated based off information provided by Switchbrew.