Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-02 | file_sys: Resolve cases of variable shadowing | Lioncash | |
Brings us closer to enabling -Wshadow as an error in the core code. | |||
2021-05-01 | Merge pull request #6261 from Kewlan/game-list-filter-fix | bunnei | |
game_list: Update filter results when removing directories | |||
2021-04-30 | Disable touch if setting is not enabled | german77 | |
2021-04-30 | Merge pull request #6257 from Morph1984/fix-use-after-free-webapplet | bunnei | |
applets/web: Fix a use-after-free when passing in the URL string | |||
2021-04-30 | Merge pull request #6243 from german77/GCresetOrigin | bunnei | |
input_common: Reset GC sticks center by measuring multiple packets | |||
2021-04-29 | Merge pull request #6226 from german77/sevensix | bunnei | |
hid: Implement SevenSixAxis and ConsoleSixAxisSensor | |||
2021-04-30 | game_list: Update filter results when removing directories | Kewlan | |
2021-04-28 | yuzu: config: Silence narrowing conversion warning on MSVC | Morph | |
2021-04-28 | applets/web: Fix a use-after-free when passing in the URL string | Morph | |
The URL string was being deleted before being used, leading to a use-after-free occurring when it is used afterwards. Fix this by taking the string by const ref to extend its lifetime, ensuring it doesn't get deleted before use. | |||
2021-04-28 | yuzu: main: Silence type conversion warning on MSVC | Morph | |
2021-04-27 | loader: Resolve instances of variable shadowing | Lioncash | |
Eliminates variable shadowing cases across all the loaders to bring us closer to enabling variable shadowing as an error in core. | |||
2021-04-26 | address comments | german77 | |
2021-04-26 | input_common: Reset GC sticks center by measuring multiple packets | german77 | |
2021-04-26 | Merge pull request #6246 from lioncash/shadow | bunnei | |
service: Eliminate cases of member variable shadowing | |||
2021-04-26 | Merge pull request #6236 from Morph1984/swkbd-button-hint-scaling | bunnei | |
applets/swkbd: Fix software keyboard button hint scaling | |||
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-25 | Merge pull request #6198 from Kewlan/favorite-games | bunnei | |
game_list: Mark games as favorite to make them appear at the top. | |||
2021-04-25 | Merge pull request #6237 from ameerj/nvdec-end-fix | bunnei | |
nvhost_vic: Fix device closure | |||
2021-04-25 | config: Add new keyboard bindings | Morph | |
Changes the keyboard bindings to be based on RPCS3's tried and true keyboard bindings. | |||
2021-04-24 | vk_texture_cache: Swap R and B channels of color flipped format | ameerj | |
Swaps the Red and Blue channels of the A1B5G5R5_UNORM texture format, which was being incorrectly rendered. | |||
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 | applets/swkbd: Fix software keyboard button hint scaling | Its-Rei | |
Fixes the scaling of the button hints using background images. Now they scale like the rest of the elements. | |||
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-24 | Merge pull request #6230 from Morph1984/default-resource-size | bunnei | |
program_metadata: Set a default resource size when a NPDM is not present | |||
2021-04-23 | Merge pull request #6227 from lioncash/meta | bunnei | |
program_metadata: Explicitly specify copy/move operators/functions | |||
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 | Merge pull request #6231 from lioncash/aes | bunnei | |
aes_util: Make use of std::span | |||
2021-04-23 | program_metadata: Set a default resource size when a NPDM is not present | Morph | |
Sets a default size of 0x1FE00000 bytes (510 MiB) for the system_resource_size when a NPDM is not present. | |||
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 | yuzu_cmd: Remove unused resource.h | ameerj | |
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-20 | Merge pull request #6219 from lioncash/log-erase | bunnei | |
log/backend: Make use of erase_if | |||
2021-04-20 | Merge pull request #6218 from lioncash/tcache | bunnei | |
texture_cache/util: Fix src being used instead of dst within DeduceBlitImages case | |||
2021-04-20 | Merge pull request #6207 from lat9nq/sdl-2.0.14 | bunnei | |
cmake: Use SDL 2.0.14 and fix scope issue | |||
2021-04-20 | log/backend: Use in-class initializer for FileBackend | Lioncash | |
We can also avoid redundant constructions of the same string repeatedly. | |||
2021-04-20 | log/backend: Make use of erase_if | Lioncash | |
Same behavior, but less verbose. |