summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-05-03core: Resolve misc cases of variable shadowingLioncash
Resolves shadowing warnings that aren't in a particularly large subsection of core. Brings us closer to turning -Wshadow into an error. All that remains now is for cases in the kernel (left untouched for now since a big change by bunnei is pending), and a few left over in the service code (will be tackled next).
2021-05-02Merge pull request #6269 from lioncash/file-shadowbunnei
file_sys: Resolve cases of variable shadowing
2021-05-02Merge pull request #6263 from Kewlan/folder-swap-expand-stateMorph
game_list: Fix dir move up/down expand state
2021-05-02Merge pull request #6265 from Morph1984/snap-save-fixbunnei
service: filesystem: Return proper error codes for CreateFile
2021-05-02file_sys: Resolve cases of variable shadowingLioncash
Brings us closer to enabling -Wshadow as an error in the core code.
2021-05-01Merge pull request #6245 from lat9nq/boost-only-configbunnei
cmake: Only config Boost during find_package
2021-05-01Merge pull request #6261 from Kewlan/game-list-filter-fixbunnei
game_list: Update filter results when removing directories
2021-05-01Merge pull request #6264 from german77/touchsettingMorph
hid: Disable touch if setting is not enabled
2021-05-01service: filesystem: Return proper error codes for CreateFileMorph
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-30Disable touch if setting is not enabledgerman77
2021-04-30Merge pull request #6257 from Morph1984/fix-use-after-free-webappletbunnei
applets/web: Fix a use-after-free when passing in the URL string
2021-04-30Merge pull request #6243 from german77/GCresetOriginbunnei
input_common: Reset GC sticks center by measuring multiple packets
2021-04-30game_list: Fix dir move up/down expand stateKewlan
2021-04-29Merge pull request #6226 from german77/sevensixbunnei
hid: Implement SevenSixAxis and ConsoleSixAxisSensor
2021-04-29Merge pull request #6258 from Morph1984/config-convbunnei
yuzu: config: Silence narrowing conversion warning on MSVC
2021-04-30game_list: Update filter results when removing directoriesKewlan
2021-04-28yuzu: config: Silence narrowing conversion warning on MSVCMorph
2021-04-28Merge pull request #6259 from Morph1984/main-convAmeer J
yuzu: main: Silence type conversion warning on MSVC
2021-04-28applets/web: Fix a use-after-free when passing in the URL stringMorph
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-28yuzu: main: Silence type conversion warning on MSVCMorph
2021-04-27Merge pull request #6250 from lioncash/loader-shadowbunnei
loader: Resolve instances of variable shadowing
2021-04-27loader: Resolve instances of variable shadowingLioncash
Eliminates variable shadowing cases across all the loaders to bring us closer to enabling variable shadowing as an error in core.
2021-04-26address commentsgerman77
2021-04-26input_common: Reset GC sticks center by measuring multiple packetsgerman77
2021-04-26Merge pull request #6246 from lioncash/shadowbunnei
service: Eliminate cases of member variable shadowing
2021-04-26Merge pull request #6236 from Morph1984/swkbd-button-hint-scalingbunnei
applets/swkbd: Fix software keyboard button hint scaling
2021-04-26service: Eliminate cases of member shadowingLioncash
Resolves a few localized instances of member variable shadowing. Brings us a little closer to turning shadowing warnings into errors.
2021-04-25Merge pull request #6198 from Kewlan/favorite-gamesbunnei
game_list: Mark games as favorite to make them appear at the top.
2021-04-25Merge pull request #6237 from ameerj/nvdec-end-fixbunnei
nvhost_vic: Fix device closure
2021-04-25Merge pull request #6241 from Morph1984/new-keyboard-bindingsbunnei
config: Add new keyboard bindings
2021-04-25cmake: Only config Boost during find_packagelat9nq
Without the CONFIG option, find_package will perform Module search. On at least Linux Mint 20 (I'm unable to reproduce this on CentOS and Arch Linux), my guess is that this causes CMake to find "dirty" modules that modify the configuration state despite the Boost version being too low/absent. Use CONFIG to put CMake into pure Config mode and avoid Module search.
2021-04-25config: Add new keyboard bindingsMorph
Changes the keyboard bindings to be based on RPCS3's tried and true keyboard bindings.
2021-04-25Merge pull request #6238 from ameerj/vk-bgr-fixRodrigo Locatti
vk_texture_cache: Swap R and B channels of color flipped format
2021-04-24vk_texture_cache: Swap R and B channels of color flipped formatameerj
Swaps the Red and Blue channels of the A1B5G5R5_UNORM texture format, which was being incorrectly rendered.
2021-04-24nvhost_vic: Fix device closureameerj
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-24applets/swkbd: Fix software keyboard button hint scalingIts-Rei
Fixes the scaling of the button hints using background images. Now they scale like the rest of the elements.
2021-04-24Merge pull request #6234 from Morph1984/stub-amMat M
ICommonStateGetter: Stub SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled
2021-04-24Merge pull request #6235 from german77/ectx_awMat M
glue: Add ectx:aw service placeholder
2021-04-24glue: Add ectx:aw placeholdergerman77
2021-04-24Merge pull request #6230 from Morph1984/default-resource-sizebunnei
program_metadata: Set a default resource size when a NPDM is not present
2021-04-23Merge pull request #6227 from lioncash/metabunnei
program_metadata: Explicitly specify copy/move operators/functions
2021-04-23hid: Implement SevenSixAxis and ConsoleSixAxisSensorgerman77
2021-04-23ICommonStateGetter: Stub ↵Morph
SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled - Used by Pixel Game Maker Series Werewolf Princess Kaguya
2021-04-23Merge pull request #6228 from lioncash/semibunnei
lm: Resolve -Wextra-semi warning
2021-04-23Merge pull request #6229 from lioncash/unused-varbunnei
acc/lbl: Remove unused variables
2021-04-23Merge pull request #6231 from lioncash/aesbunnei
aes_util: Make use of std::span
2021-04-23program_metadata: Set a default resource size when a NPDM is not presentMorph
Sets a default size of 0x1FE00000 bytes (510 MiB) for the system_resource_size when a NPDM is not present.
2021-04-23Merge pull request #6232 from lioncash/alias2bunnei
emu_window: unsigned -> u32
2021-04-23emu_window: Return pair from ClipToTouchScreen() instead of tupleLioncash
This is only a 2-tuple, so it can be converted over to the std::pair class.
2021-04-23emu_window: unsigned -> u32Lioncash
This is more concise and consistent with the rest of the codebase.