Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-08-28 | qt: fix romfs dumping for multiprogram applications | Liam | |
2023-08-28 | Merge pull request #11390 from FearlessTobi/hwopus-multi | liamwhite | |
hwopus: Implement OpenHardwareOpusDecoderForMultiStreamEx and DecodeInterleavedForMultiStream | |||
2023-08-28 | Merge pull request #11399 from liamwhite/cubeb-latency | liamwhite | |
audio: allow more latency in cubeb initialization | |||
2023-08-27 | audio: allow more latency in cubeb initialization | Liam | |
2023-08-27 | hwopus: Implement OpenHardwareOpusDecoderForMultiStreamEx and ↵ | FearlessTobi | |
DecodeInterleavedForMultiStream Allows MLB The Show 22 to boot. Fixes https://github.com/yuzu-emu/yuzu/issues/7911. | |||
2023-08-27 | Merge pull request #11389 from FernandoS27/discard-fix | Fernando S | |
Buffer Cache: fix discard writes. | |||
2023-08-27 | Buffer Cache: fix discard writes. | Fernando Sahmkow | |
2023-08-26 | Merge pull request #11356 from lat9nq/console-mode-pg | liamwhite | |
general,config-qt: Present Console Mode as an enum with separate options in game properties | |||
2023-08-26 | Merge pull request #11359 from Kelebek1/check_suitable_backend | liamwhite | |
Pre-test for valid audio backends | |||
2023-08-26 | Merge pull request #11350 from BenjaminHalko/button-padding | liamwhite | |
ui: Added padding to the reset button | |||
2023-08-26 | Merge pull request #11317 from Kelebek1/macro_dumps | liamwhite | |
Mark decompiled macros on dump, dump shaders after translation | |||
2023-08-26 | Merge pull request #11338 from comex/warning-fixes-august-2023 | liamwhite | |
Warnings cleanup for GCC 13 and Clang 16 | |||
2023-08-25 | Mark decompiled macros as decompiled on dump, dump shaders after translation | Kelebek1 | |
2023-08-25 | Skip additional mbedcrypto warnings options on MSVC | Liam | |
2023-08-25 | Avoid `$<CXX_COMPILER_ID:Clang>` because it doesn't include AppleClang. | comex | |
2023-08-25 | Warnings cleanup for GCC 13 and Clang 16 | comex | |
Note: For GCC there are still a huge number of `-Warray-bounds` warnings coming from `externals/dynarmic`. I could have added a workaround in `externals/CMakeLists.txt` similar to what this PR does for other externals, but given Dynarmic's close affiliation with Yuzu, it would be better to fix it upstream. Besides that, on my machine, this makes the build warning-free except for some warnings from glslangValidator and AutoMoc. Details: - Disable some warnings in externals. - Disable `-Wnullability-completeness`, which is a Clang warning triggered by the Vulkan SDK where if any pointers in the header are marked _Nullable, it wants all pointers to be marked _Nullable or _Nonnull. Most of them are, but some aren't. Who knows why. - `src/web_service/verify_user_jwt.cpp`: Disable another warning when including `jwt.hpp`. - `src/input_common/input_poller.cpp`: Add missing `override` specifiers. - src/common/swap.h: Remove redundant `operator&`. In general, this file declares three overloads of each operator. Using `+` as an example, the overloads are: - a member function for `swapped_t + integer` - a member function for `swapped_t + swapped_t` - a free function for `integer + swapped_t` But for `operator&`, there was an additional free function for `swapped_t + integer`, which was redundant with the member function. This caused a GCC warning saying "ISO C++ says that these are ambiguous". | |||
2023-08-25 | Merge pull request #11377 from BenjaminHalko/reverse-slider-input | liamwhite | |
ui: Fixed inverted controls on ReverseSlider widgets | |||
2023-08-25 | Merge pull request #11378 from t895/game-flag | liamwhite | |
android: Use appCategory to specify the app is a game | |||
2023-08-25 | Merge pull request #11370 from FearlessTobi/fix-filesize | liamwhite | |
filesystem: Return correct error for RenameFile when dest_path already exists | |||
2023-08-25 | Merge pull request #11371 from FearlessTobi/fix-cli-updates | liamwhite | |
yuzu/main: Ensure NCAs are registered in content provider when launching from CLI | |||
2023-08-26 | ssl: tolerate handshake without hostname set (#11328) | liamwhite | |
2023-08-26 | registered_cache: create fake CNMT entries for program updates of ↵ | liamwhite | |
multiprogram applications (#11319) | |||
2023-08-25 | kernel: offset code entry point for 39-bit address space type (#11326) | liamwhite | |
2023-08-25 | android: Use appCategory to specify the app is a game | Charles Lombardo | |
2023-08-25 | Merge pull request #11357 from liamwhite/lime-vfs | bunnei | |
android: jni: ensure NCAs from loaded filepath are registered in manual content provider | |||
2023-08-25 | Updated to only the reset button | BenjaminHalko | |
2023-08-25 | Updated padded style | BenjaminHalko | |
2023-08-25 | ui: Fixed inverted controls on ReverseSlider widgets | BenjaminHalko | |
fixes: #11236 | |||
2023-08-25 | Merge pull request #11375 from liamwhite/nvhost-as-gpu | Fernando S | |
nvhost_as_gpu: ensure mappings are aligned to big page size when deallocated | |||
2023-08-25 | nvhost_as_gpu: ensure mappings are aligned to big page size when deallocated | Liam | |
2023-08-24 | yuzu/main: Ensure NCAs are registered in content provider when launching ↵ | FearlessTobi | |
from CLI Fixes updates and DLC not being loaded when launching yuzu from the command line. Similar to https://github.com/yuzu-emu/yuzu/pull/11357. Fixes https://github.com/yuzu-emu/yuzu/issues/8352, | |||
2023-08-24 | filesystem: Return correct error for RenameFile when dest_path already exists | FearlessTobi | |
Allows Grid Autosport to boot. Fixes https://github.com/yuzu-emu/yuzu/issues/8287. | |||
2023-08-24 | Merge pull request #11327 from liamwhite/skyline-2 | liamwhite | |
sockets: avoid locking around socket session calls | |||
2023-08-24 | Merge pull request #11367 from FearlessTobi/fix-filesize | liamwhite | |
game_list_worker: Display correct size for NAX games | |||
2023-08-24 | game_list_worker: Display correct size for NAX games | FearlessTobi | |
This was a regression from https://github.com/yuzu-emu/yuzu/pull/1837. Fixes https://github.com/yuzu-emu/yuzu/issues/1938. | |||
2023-08-23 | main: Fix docked mode button, clang 14 error | lat9nq | |
2023-08-23 | Merge pull request #11352 from t895/recurse-subfolders | liamwhite | |
android: Search game directory recursively | |||
2023-08-23 | android: Set default build variant to mainlineRelWithDebInfo (#11358) | Charles Lombardo | |
2023-08-23 | Pre-test opening a stream for audio backends, fall back to null if not suitable. | Kelebek1 | |
2023-08-22 | android: jni: ensure NCAs from loaded filepath are registered in manual ↵ | Liam | |
content provider | |||
2023-08-22 | native: Use Docked Mode helper | lat9nq | |
2023-08-22 | main: Access by reference | lat9nq | |
Old Clang is fussy about this. | |||
2023-08-22 | config-android: Translate console mode setting | lat9nq | |
Translates the previous boolean to the enum. | |||
2023-08-22 | general: Use console mode helper across project | lat9nq | |
2023-08-22 | settings: Add docked mode helper function | lat9nq | |
2023-08-22 | config(qt): Sanitize docked handheld controller | lat9nq | |
2023-08-22 | shared_translation: Define use_docked_mode texts | lat9nq | |
2023-08-22 | general: Convert use_docked_mode to an enumeration | lat9nq | |
Allows some special interactions with it in the Qt frontend. | |||
2023-08-22 | shared_widget: Implement radio groups | lat9nq | |
2023-08-22 | android: Search game directory recursively | Charles Lombardo | |