Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-01 | am: Unstub SetScreenShotPermission | David Marcec | |
2020-07-31 | Merge pull request #4392 from lioncash/guard | David | |
compatible_formats: Add missing header guard | |||
2020-07-29 | Merge pull request #4396 from lioncash/comma | bunnei | |
surface_params: Replace questionable usages of the comma operator with semicolons | |||
2020-07-29 | Merge pull request #4372 from Morph1984/remove_context_menu | bunnei | |
game_list: Add "Remove" context menu | |||
2020-07-29 | main: Add support for removing SDMC installed titles | Morph | |
2020-07-29 | xts_archive: Check if the file is nullptr prior to parsing | Morph | |
Fixes an access violation where the file no longer exists at the specified path while being parsed. | |||
2020-07-29 | registered_cache: Add support for removing folder ncas | Morph | |
2020-07-29 | game_list: Limit context menu options for homebrew | Morph | |
Hides the following options when the title id is 0: - Open Save Location - Open Mod Data Location - Open Transferable Shader Cache - All removal options except Remove Custom Configuration | |||
2020-07-29 | main: Remove assert for opening savedata when program_id = 0 | Morph | |
2020-07-29 | main: Silence [[fallthrough]] warning | Morph | |
2020-07-29 | main: Split removal cases into their individual functions and address feedback | Morph | |
2020-07-29 | main: Connect game list remove signals to removal functions | Morph | |
2020-07-29 | game_list: Add "Remove" context menu | Morph | |
Adds the following actions: - Remove Installed Update - Remove All Installed DLC - Remove Shader Cache - Remove Custom Configuration - Remove All Installed Contents | |||
2020-07-28 | Merge pull request #4442 from lioncash/devicemem | bunnei | |
device_memory: Remove unused system member | |||
2020-07-28 | Merge pull request #4446 from Morph1984/remove-30fps-hack | LC | |
configure_graphics: Remove Force 30 FPS mode | |||
2020-07-28 | configure_graphics: Remove Force 30 FPS mode | Morph | |
The introduction of multicore rendered this setting non-functional as timing code was changed. This removes the setting entirely. | |||
2020-07-27 | device_memory: Remove unused system member | Lioncash | |
This isn't used by anything in particular, so it can be removed. | |||
2020-07-27 | Merge pull request #4437 from lioncash/ptr | bunnei | |
core_timing: Make use of uintptr_t to represent user_data | |||
2020-07-27 | Merge pull request #4420 from lat9nq/fix-themed-label-bg | bunnei | |
qt_themes: Set QLabel background color to transparent for Dark and Midnight Blue themes | |||
2020-07-27 | core_timing: Make use of uintptr_t to represent user_data | Lioncash | |
Makes the interface future-proofed for supporting other platforms in the event we ever support platforms with differing pointer sizes. This way, we have a type in place that is always guaranteed to be able to represent a pointer exactly. | |||
2020-07-27 | Merge pull request #4419 from lioncash/initializer | bunnei | |
vulkan: Resolve -Wmissing-field-initializer warnings | |||
2020-07-27 | Merge pull request #4434 from CrazyMax/lang_unused_var | bunnei | |
AM: GetDesiredLanguage: remove unused variable | |||
2020-07-27 | Merge pull request #4432 from bylaws/patch-1 | Rodrigo Locatti | |
video_core/gpu: Correct the size of the puller registers | |||
2020-07-27 | remove unused variable; | CrazyMax | |
2020-07-26 | Merge pull request #4431 from kelnos/fix-exit-crash | bunnei | |
GCAdapter: only join worker thread if running & joinable | |||
2020-07-26 | GCAdapter: only join worker thread if running & joinable | Brian J. Tarricone | |
2020-07-26 | video_core/gpu: Correct the size of the puller registers | Billy Laws | |
The puller register array is made up of u32s however the `NUM_REGS` value is the size in bytes, so switch it to avoid making the struct unnecessary large. Also fix a small typo in a comment. | |||
2020-07-26 | Merge pull request #4426 from lioncash/lock | bunnei | |
nvflinger: Use return value of Lock() | |||
2020-07-25 | Merge pull request #4418 from lioncash/udp-warn | bunnei | |
udp/client: Remove unused boost include | |||
2020-07-25 | Merge pull request #4415 from lioncash/maybe | bunnei | |
virtual_buffer: Mark size parameter of FreeMemoryPages() as [[maybe_unused]] | |||
2020-07-25 | Merge pull request #4417 from lioncash/poll | bunnei | |
gc_adapter/gc_poller: Resolve compiler warnings | |||
2020-07-25 | Merge pull request #4429 from FearlessTobi/remove-duplicated-options | LC | |
yuzu/configure_debug: Remove duplicated checkboxes | |||
2020-07-26 | yuzu/configure_debug: Remove duplicated checkboxes | FearlessTobi | |
Those are already found in the Filesystem tab. They were added back to the Debug tab by mistake in the Vulkan PR. | |||
2020-07-25 | nvflinger: Mark interface functions with return values as [[nodiscard]] | Lioncash | |
Not using the return value of these functions are undeniably the source of a bug. This way we allow compilers to loudly make any future misuses evident. | |||
2020-07-25 | nvflinger: Use return value of Lock() | Lioncash | |
comex reported in #4424 that we were incorrectly discarding the return value of Lock() which is correct. | |||
2020-07-25 | Merge pull request #4350 from ogniK5377/hid-update-connected | bunnei | |
hid: Only update keyboard & debug pad inputs if enabled | |||
2020-07-25 | common/string_util: Remove unimplemented function prototype (#4414) | LC | |
This function was relocated to log.h as a constexpr function, so this can be removed. | |||
2020-07-25 | qt_themes: Set background color to transparent for Dark and Midnight Blue themes | lat9nq | |
Fixes the override highlights in per-game settings from looking weird when viewed on the Dark or Midnight Blue themes by setting QLabels to have transparent backgrounds by default. Also apparently adds a newline to the end of the Dark theme's qss file. | |||
2020-07-25 | vulkan: Resolve -Wmissing-field-initializer warnings | Lioncash | |
2020-07-25 | udp/client: Remove unused boost include | Lioncash | |
Also silences a deprecation warning from boost on Clang/GCC. | |||
2020-07-25 | gc_adapter: Resolve C++20 deprecation warning | Lioncash | |
2020-07-25 | gc_poller: Resolve -Wsign-compare warning | Lioncash | |
2020-07-25 | gc_poller: Resolve -Wredundant-move warning | Lioncash | |
2020-07-25 | virtual_buffer: Mark size parameter of FreeMemoryPages() as [[maybe_unused]] | Lioncash | |
This isn't used on Windows, but is used on non-Windows operating systems. | |||
2020-07-24 | Merge pull request #4380 from ogniK5377/swkbd-inline-1 | bunnei | |
swkbd: Return result for Calc request for inlined swkbd | |||
2020-07-24 | Merge pull request #4383 from ogniK5377/dark-checkbox | bunnei | |
frontend: Match indeterminate checkbox state with light theme | |||
2020-07-24 | Merge pull request #4393 from lioncash/unused5 | bunnei | |
vk_rasterizer: Remove unused variable in Clear() | |||
2020-07-24 | Merge pull request #4377 from Morph1984/dark-themes | bunnei | |
qt-themes: Add Midnight Blue qdarkstyle theme (2.8.1) | |||
2020-07-24 | Merge pull request #4334 from lat9nq/clear-per-game-settings | bunnei | |
configure_per_game: Clearer per-game settings | |||
2020-07-24 | Merge pull request #4388 from lioncash/written | bunnei | |
buffer_cache: Eliminate redundant map lookup in MarkRegionAsWritten() |