| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-05-05 | hle: kernel: Add initial impl. of KLinkedList. | bunnei | |
| 2021-05-05 | hle: kernel: Add initial impl. of KSlabAllocated. | bunnei | |
| 2021-05-05 | hle: kernel: Add initial impl. of KAutoObjectWithListContainer. | bunnei | |
| 2021-05-05 | hle: kernel: Add initial impl. of KAutoObject. | bunnei | |
| 2021-05-05 | Merge pull request #6279 from ogniK5377/nvhost-prof | bunnei | |
| nvdrv: /dev/nvhost-prof-gpu for production | |||
| 2021-05-05 | Update src/core/hle/service/nvdrv/interface.cpp | bunnei | |
| Co-authored-by: Ameer J <52414509+ameerj@users.noreply.github.com> | |||
| 2021-05-05 | hid: Improve hardware accuracy of gestures | german77 | |
| 2021-05-05 | service: Remove unused class variables | Lioncash | |
| Prevents some warnings from occurring. | |||
| 2021-05-04 | service: Resolve cases of member field shadowing | Lioncash | |
| Now all that remains is for kernel code to be 'shadow-free' and then -Wshadow can be turned into an error. | |||
| 2021-05-03 | nvdrv: /dev/nvhost-prof-gpu for production | Chloe Marcec | |
| While we're at it, we can fix the is_initialized error code. This fixes the crashes on Shante | |||
| 2021-05-02 | hid: Fix touch not initializing properly if disabled | german77 | |
| 2021-05-02 | Merge pull request #6265 from Morph1984/snap-save-fix | bunnei | |
| service: filesystem: Return proper error codes for CreateFile | |||
| 2021-05-01 | service: filesystem: Return proper error codes for CreateFile | Morph | |
| This improves the accuracy of CreateFile by returning the correct error codes on certain conditions (parent directory does not exist, path already exists). This fixes saving and the loading of existing saves in New Pokemon Snap | |||
| 2021-04-30 | Disable touch if setting is not enabled | german77 | |
| 2021-04-29 | Merge pull request #6226 from german77/sevensix | bunnei | |
| hid: Implement SevenSixAxis and ConsoleSixAxisSensor | |||
| 2021-04-26 | address comments | german77 | |
| 2021-04-26 | service: Eliminate cases of member shadowing | Lioncash | |
| Resolves a few localized instances of member variable shadowing. Brings us a little closer to turning shadowing warnings into errors. | |||
| 2021-04-24 | nvhost_vic: Fix device closure | ameerj | |
| Implements the OnClose method of the nvhost_vic device, and removes the remnants of an older implementation. Also cleans up some of the surrounding code. | |||
| 2021-04-24 | Merge pull request #6234 from Morph1984/stub-am | Mat M | |
| ICommonStateGetter: Stub SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled | |||
| 2021-04-24 | Merge pull request #6235 from german77/ectx_aw | Mat M | |
| glue: Add ectx:aw service placeholder | |||
| 2021-04-24 | glue: Add ectx:aw placeholder | german77 | |
| 2021-04-23 | hid: Implement SevenSixAxis and ConsoleSixAxisSensor | german77 | |
| 2021-04-23 | ICommonStateGetter: Stub ↵ | Morph | |
| SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled - Used by Pixel Game Maker Series Werewolf Princess Kaguya | |||
| 2021-04-23 | Merge pull request #6228 from lioncash/semi | bunnei | |
| lm: Resolve -Wextra-semi warning | |||
| 2021-04-23 | Merge pull request #6229 from lioncash/unused-var | bunnei | |
| acc/lbl: Remove unused variables | |||
| 2021-04-23 | acc/lbl: Remove unused variables | Lioncash | |
| 2021-04-23 | lm: Make use of insert_or_assign() in Log() | Lioncash | |
| Avoids unnecessary default construction of an entry in cases where no entry exists before overwriting the created entry. | |||
| 2021-04-23 | lm: Prevent redundant map lookups in Log() | Lioncash | |
| We can perform the lookup and then do the contains check by checking the end iterator. The benefit of this is that if we *do* find an entry, then we aren't hashing into the map again to find it. We can also get rid of an unused std::vector temporary while we're at it. | |||
| 2021-04-23 | lm: Resolve -Wextra-semi warning | Lioncash | |
| Resolves a trivial warning with clang. | |||
| 2021-04-22 | service: hid: Get transfer memory for InitializeSevenSixAxisSensor | Morph | |
| 2021-04-21 | Merge pull request #6214 from Morph1984/time-fix-kirby-clash | bunnei | |
| time: Fix GetClockSnapshotFromSystemClockContext | |||
| 2021-04-19 | Merge pull request #6217 from Morph1984/consistent-writebuffers | bunnei | |
| general: Write buffers before pushing raw arguments | |||
| 2021-04-19 | Merge pull request #6215 from lioncash/duplicate | bunnei | |
| npad: Remove duplicated class member variable | |||
| 2021-04-19 | general: Write buffers before pushing raw arguments | Morph | |
| For consistency with the rest of the service implementations | |||
| 2021-04-19 | arp: Use type alias for issue function | Lioncash | |
| Reduces some verbosity and centralizes the function details in one spot. | |||
| 2021-04-19 | arp: Prevent uninitialized read of launch member variable | Lioncash | |
| If anything happened to call arp functions in the wrong order and called IRegistrar's Issue function before SetApplicationLaunchProperty, we'd read from an uninitialized ApplicationLaunchProperty instance. Instead, we can always initialize it so if this does happen, then the outcome of doing such a thing is at least consistently reproducible. | |||
| 2021-04-19 | npad: Remove duplicated class member variable | Lioncash | |
| ControllerBase already has a System reference that can be accessed from this class, so we can get rid of this to make the class layout a little more straightforward. | |||
| 2021-04-19 | time: Write buffer before pushing RESULT_SUCCESS in GetClockSnapshot | Morph | |
| 2021-04-19 | time: Fix GetClockSnapshotFromSystemClockContext | Morph | |
| This removes an incorrect alignment usage and corrects the positions of the popped parameters. - Fixes Super Kirby Clash crashing on boot | |||
| 2021-04-17 | applets: Send focus state change message on applet state change | Morph | |
| Fixes the softlock after the controller applet exits in Mario Kart 8 Deluxe. | |||
| 2021-04-17 | applets: Make the applet mode a protected property of Applet | Morph | |
| 2021-04-16 | Merge pull request #6125 from ogniK5377/nvdec-close-dev | bunnei | |
| nvdrv: Cleanup CDMA Processor on device closure | |||
| 2021-04-15 | applets/swkbd: Implement the Normal and Inline Software Keyboard Applet | Morph | |
| 2021-04-15 | ILibraryAppletCreator: Implement CreateHandleStorage | Morph | |
| Used by Monster Hunter Generations Ultimate | |||
| 2021-04-15 | hle_ipc: Add helper functions to get copy/move handles | Morph | |
| 2021-04-15 | ILibraryAppletAccessor: Demote from ERROR to DEBUG for null storage logs | Morph | |
| Avoids unnecessary console spam when the inline software keyboard is used. | |||
| 2021-04-15 | applets: Pass in the LibraryAppletMode each applet's constructor | Morph | |
| 2021-04-15 | applets: Remove the previous software keyboard applet implementation | Morph | |
| 2021-04-14 | Merge pull request #6196 from bunnei/asserts-setting | bunnei | |
| core: settings: Add setting for debug assertions and disable by default. | |||
| 2021-04-14 | common: Move settings to common from core. | bunnei | |
| - Removes a dependency on core and input_common from common. | |||
