| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-04-23 | Merge pull request #6232 from lioncash/alias2 | bunnei | |
| emu_window: unsigned -> u32 | |||
| 2021-04-23 | emu_window: Return pair from ClipToTouchScreen() instead of tuple | Lioncash | |
| This is only a 2-tuple, so it can be converted over to the std::pair class. | |||
| 2021-04-23 | emu_window: unsigned -> u32 | Lioncash | |
| This is more concise and consistent with the rest of the codebase. | |||
| 2021-04-23 | aes_util: Make use of std::span | Lioncash | |
| Allows us to simplify the interface quite a bit as it will handle contiguous sequences for us. | |||
| 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-23 | program_metadata: Explicitly specify copy/move functions | Lioncash | |
| The generation of the copy assignment operators are deprecated on being generated when a user-provided destructor is present. We can explicitly specify that we desire this behavior to keep the class forward compatible with future standards. | |||
| 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 | input_interpreter: Fix button hold being interpreted incorrectly on init | Morph | |
| We reset all the button states to 0 except the first index (which has all the buttons as pressed) to prevent a button hold being interpreted as a button that was pressed once on the first poll. | |||
| 2021-04-15 | applets/swkbd: Implement the Default Software Keyboard frontend | Morph | |
| 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 | core: settings: Add setting for debug assertions and disable by default. | bunnei | |
| - This is a developer-only setting and no longer needs to be enabled by default. - Also adds "use_auto_stub" setting to SDL frontend while we are here. - Supersedes #1340. | |||
| 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 #6135 from Morph1984/borderless-windowed-fullscreen | bunnei | |
| configure_graphics: Add Borderless Windowed fullscreen mode | |||
| 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 #6172 from degasus/cmake_opus | bunnei | |
| externals: Search for shared opus installation. | |||
| 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 | Merge pull request #6162 from degasus/no_spin_loops | bunnei | |
| video_core: Avoid spin loops. | |||
| 2021-04-09 | ns: Update to 12.x | Morph | |
| 2021-04-09 | aoc_u: Update to 12.x | Morph | |
