| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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. | |||
| 2021-04-14 | k_resource_limit: Minor cleanup of member variables/headers | ameerj | |
| 2021-04-13 | Merge pull request #6185 from ameerj/process-reslimit | bunnei | |
| kernel/process: Replace process resource limit instance with the kernel's resource limit | |||
| 2021-04-12 | kernel/process: Replace process resource limit instance with the kernel's ↵ | ameerj | |
| resource limit This commit addresses the inaccurate behavior of kernel processes creating their own resource limit, rather than utilizing the kernel's system-wide resource limit instance. | |||
| 2021-04-12 | k_thread: Remove [[nodiscard]] attribute from ClearWaitCancelled() | Lioncash | |
| This function has a void return value, so this attribute doesn't apply to it. | |||
| 2021-04-11 | Merge pull request #6170 from Morph1984/more-time-fixes | bunnei | |
| service: time: Setup the network clock with the local clock context | |||
| 2021-04-10 | Merge pull request #6167 from Morph1984/time-fix | bunnei | |
| service: time: Fix CalculateStandardUserSystemClockDifferenceByUser | |||
| 2021-04-10 | Merge pull request #6112 from ogniK5377/pctl | bunnei | |
| pctl: Rework how pctl works to be more accurate | |||
| 2021-04-10 | Merge pull request #6099 from bunnei/derive-mem | bunnei | |
| Kernel Rework: Derive memory regions from board layout. | |||
| 2021-04-09 | Merge pull request #6171 from german77/services | bunnei | |
| service: Update service function tables and use proper names | |||
| 2021-04-09 | Merge pull request #6156 from lioncash/lock-discard | bunnei | |
| kernel: Mark lock helper classes as [[nodiscard]] | |||
| 2021-04-09 | Merge pull request #6113 from german77/playhistory | bunnei | |
| Friend: Stub GetPlayHistoryRegistrationKey | |||
| 2021-04-09 | Merge pull request #6158 from german77/hidServiceTables | bunnei | |
| hid: Update service function tables | |||
| 2021-04-09 | ns: Update to 12.x | Morph | |
| 2021-04-09 | aoc_u: Update to 12.x | Morph | |
| 2021-04-09 | nim: Update to 12.x | Morph | |
