| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-06-07 | hle: kernel: hle_ipc: Ensure SessionRequestHandler is valid. | bunnei | |
| 2021-06-07 | Merge pull request #6412 from clementgallet/yuzu-cmd-window-gl | bunnei | |
| yuzu-cmd: Fix OpenGL rendering | |||
| 2021-06-07 | hle: kernel: Remove service thread manager and use weak_ptr. | bunnei | |
| - We no longer need to queue up service threads to be destroyed. - Fixes a race condition where a thread could be destroyed too early, which caused a crash in Pokemon Sword/Shield. | |||
| 2021-06-07 | yuzu qt: Start games from context menu | lat9nq | |
| This connects the BootGame function to the context menu. In addition, there is an option to boot without using the custom configuration. | |||
| 2021-06-07 | Merge pull request #6410 from lat9nq/avoid-oob | bunnei | |
| decoders: Avoid out-of-bounds access | |||
| 2021-06-07 | Various suggestions by v1993 and lioncash | Clément Gallet | |
| 2021-06-06 | Merge pull request #6414 from bunnei/fix-service-threads | bunnei | |
| hle: kernel: Refactor to allocate a ServiceThread per service handler. | |||
| 2021-06-06 | hle: kernel: KServerSession: Use ASSERT_MSG where appropriate. | bunnei | |
| 2021-06-06 | hle: kernel: k_server_session: Return service thread by strong pointer. | bunnei | |
| 2021-06-06 | hle: kernel: k_server_session: Ensure service thread is valid before ↵ | bunnei | |
| dereference. | |||
| 2021-06-06 | Merge pull request #6400 from ameerj/disable-uniform-simplify | bunnei | |
| buffer_cache: Simplify uniform disabling logic | |||
| 2021-06-06 | hle: kernel: hle_ipc: Use default destructor for SessionRequestManager. | bunnei | |
| 2021-06-06 | hle: kernel: KAutoObjectWithListContainer: Use boost::instrusive::rbtree. | bunnei | |
| - Fixes some crashes introduced by our common intrusive red/black tree impl. | |||
| 2021-06-06 | Add sdl2 audio description in the yuzu-cmd config file | Clément Gallet | |
| 2021-06-06 | Add SDL2 audio backend | Clément Gallet | |
| 2021-06-06 | limitable_input_dialog: Implement character limiter | Kewlan | |
| When using GetText() you can now choose what set of characters the user can't enter. | |||
| 2021-06-06 | Merge pull request #6415 from lioncash/res-nodisc | Morph | |
| result: Add [[nodiscard]] specifiers where applicable | |||
| 2021-06-05 | Merge pull request #6416 from ReinUsesLisp/update-dynarmic | Rodrigo Locatti | |
| externals: Update dynarmic | |||
| 2021-06-05 | externals: Update dynarmic | ReinUsesLisp | |
| 2021-06-05 | Avoid -Wshadow warning | Clément Gallet | |
| Co-authored-by: Mai M. <mathew1800@gmail.com> | |||
| 2021-06-05 | result: Add [[nodiscard]] specifiers where applicable | Lioncash | |
| The result code classes are used quite extensively throughout both the kernel and service HLE code. We can mark these member functions as [[nodiscard]] to prevent a few logic bugs from slipping through. | |||
| 2021-06-04 | Merge pull request #6362 from lat9nq/reset-to-defaults | bunnei | |
| yuzu qt: Add settings reset button to general configuration | |||
| 2021-06-04 | Merge pull request #6411 from clementgallet/yuzu-cmd-touch-button | Mai M | |
| yuzu-cmd: Add touch_from_button in config file | |||
| 2021-06-04 | hle: kernel: Refactor to allocate a ServiceThread per service handler. | bunnei | |
| - Previously, we would allocate a thread per session, which adds new threads on CloneCurrentObject. - This results in race conditions with N sessions queuing requests to the same service interface. - Fixes Pokken Tournament DX crashes/softlocks, which were regressed by #6347. | |||
| 2021-06-04 | yuzu-cmd: Fix OpenGL rendering | Clément Gallet | |
| 2021-06-04 | decoders: Break instead of continue | lat9nq | |
| continue causes a memory leak in A Hat in Time. | |||
| 2021-06-04 | decoders: Avoid out-of-bounds access | lat9nq | |
| This is not a real fix, so assert here and continue before crashing. | |||
| 2021-06-04 | Merge pull request #6392 from german77/controller-widget | bunnei | |
| settings: Disable controller preview if controller is not active | |||
| 2021-06-03 | Merge pull request #6389 from german77/Analog_button_fix | bunnei | |
| input_common: Analog button, use time based position | |||
| 2021-06-03 | [game_list] Correct light theme loading (#6408) | Maide | |
| Correct light theme loading The setLayout call in game list instantiation will call resizing signals with default values in light theme, which was then being erroneously saved. setLayout doesn't seem to call resizing for any other theme, so I'm not sure why that happens. | |||
| 2021-06-04 | yuzu-cmd: Add touch_from_button in config file | Clément Gallet | |
| 2021-06-03 | externals: libusb: Call program names not full paths | lat9nq | |
| 2021-06-03 | externals: libusb: Link libusb statically on Linux | lat9nq | |
| Turns out that this is possible. Also addresses my own review comment. | |||
| 2021-06-03 | cmake: General improvements to libusb linking | lat9nq | |
| Delegates libusb external communication to externals/CMakeLists.txt Ensures an interface library `usb` for every pathway input_common just links to the `usb` library now externals/libusb/CMakeLists.txt sets variables to override SDL2's libusb finding Other minor cleanup | |||
| 2021-06-03 | Merge pull request #6402 from Kelebek1/UI | bunnei | |
| game_list: Stop the columns resizing on NAND install | |||
| 2021-06-03 | cmake: Use autotools to build libusb generally for GNU | lat9nq | |
| Building libusb was also broken on GCC (and maybe Clang) on our CMakeLists after upgrading to 1.0.24, but it was not being checked because our 18.04 container had libusb installed on it. This builds on the MinGW work from earlier and extends it to the rest of the GNU toolchains. In addition we make use of pkg-config when present to find libusb. pkg-config is preferrable because we can specify a minimum required version. | |||
| 2021-06-02 | Merge pull request #6404 from lat9nq/revert_views | bunnei | |
| yuzu qt: Revert some usages of string_view | |||
| 2021-06-02 | Merge pull request #6405 from Morph1984/result-success | bunnei | |
| fsp-srv: Replace one last instance of RESULT_SUCCESS | |||
| 2021-06-02 | fsp-srv: Replace one last instance of RESULT_SUCCESS | Morph | |
| 2021-06-02 | fspsrv: Implement DisableAutoSaveDataCreation (#6355) | Chloe | |
| - Used by Mii Edit | |||
| 2021-06-02 | yuzu qt: Revert some usages of string_view | lat9nq | |
| Causes a heap-use-after free reported by AddressSanitizer. This makes use of std::filesystem::path, but due to that we have to use their string() function which may not work for all characters. | |||
| 2021-06-02 | Merge pull request #6308 from Morph1984/result | bunnei | |
| general: Replace RESULT_NAME with ResultName | |||
| 2021-06-02 | Merge pull request #6403 from Kewlan/game-list-for-loop-optimization | bunnei | |
| game_list: Minor for loop optimizations | |||
| 2021-06-02 | game_list: Minor for loop optimizations | Kewlan | |
| There's no need to check the first and last rows since they'll always be the Favorites and AddDir rows. Also change the name of the clear_all variable for consistency. | |||
| 2021-06-02 | Stop the columns resizing on NAND install | Kelebek1 | |
| 2021-06-02 | general: Replace RESULT_UNKNOWN with ResultUnknown | Morph | |
| Transition to PascalCase for result names. | |||
| 2021-06-02 | general: Replace RESULT_SUCCESS with ResultSuccess | Morph | |
| Transition to PascalCase for result names. | |||
| 2021-06-02 | Merge pull request #6395 from lioncash/result-move | Morph | |
| common_funcs: Move R_ macros to result.h | |||
| 2021-06-02 | Merge pull request #6397 from Morph1984/fs_util | Mai M | |
| common: fs: fs_util: Add more string conversion functions | |||
| 2021-06-02 | common: fs: fs_util: Move PathToUTF8String to fs_util | Morph | |
