summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-09-04ScmRevGen: Bump major version to 24092409release-prep-2409OatmealDome
2024-09-02Merge pull request #13047 from mitaclaw/cached-interpreter-memcpy-ubAdmiral H. Curtiss
CachedInterpreterEmitter: Fix `std::memcpy` UB
2024-09-01CachedInterpreterEmitter: Fix `std::memcpy` UBmitaclaw
I wasn't aware that even with a size of zero, it's still not safe to pass a nullptr to `std::memcpy`. When `CachedInterpreterEmitter::PoisonCallback` is written, UB is happening.
2024-09-01Translation resources sync with TransifexJosJuice
2024-08-31Merge pull request #13044 from JosJuice/subfic-carryTilka
Interpreter: Fix subfic carry calculation
2024-08-31Interpreter: Fix subfic carry calculationJosJuice
This was accidentally using the instruction's output instead of the instruction's input when the input and output registers were the same.
2024-08-31Merge pull request #13031 from parona-source/libfmt-11Admiral H. Curtiss
Add support for libfmt-11
2024-08-31Merge pull request #13042 from homeisfar/vk_improve_loggerTilka
vulkan: Add line number to vulkan error logger
2024-08-31Merge pull request #13043 from Tilka/my_first_songsTilka
GameSettings: force EFB-to-RAM for My First Songs
2024-08-31GameSettings: force EFB-to-RAM for My First SongsTillmann Karras
2024-08-31Merge pull request #13039 from ↵Tilka
Dentomologist/mainwindow_fix_hidden_confirm_on_stop_dialog MainWindow: Prevent Confirm On Stop dialog from being hidden by the Render window
2024-08-31Merge pull request #13038 from Ferdi265/fix-rvz-clang-ubTilka
RVZ: Fix undefined behaviour when copying 0 bytes to a null pointer
2024-08-28vulkan: Add line number to vulkan error loggerAli Homafar
This is a minor improvement to add line numbers to the LOG_VULKAN_ERROR define. Basically error logs for Vulkan will now look like: ``` // This 25:03:347 VideoBackends/Vulkan/VulkanLoader.cpp:247 E[Video]: (WaitForCommandBufferCompletion:278) vkWaitForFences failed: (2: VK_TIMEOUT) // Instead of 15:45:154 VideoBackends/Vulkan/VulkanLoader.cpp:247 E[Video]: (WaitForCommandBufferCompletion) vkWaitForFences failed: (2: VK_TIMEOUT) ```
2024-08-28Merge pull request #13036 from PatrickFerry/gameini_enable_pal60Tilka
Gameini: Enable PAL60 for Some PAL Games
2024-08-27MainWindow: Prevent Confirm On Stop dialog from being hiddenDentomologist
Set the Render Window as the parent of the Confirm On Stop confirmation dialog when Keep Window On Top is enabled, ensuring it will always be visible. Previously, when Confirm On Stop and Keep Window On Top were both enabled the Confirm On Stop dialog could be hidden by the render window in the following situations: * Clicking Stop in the Main Window * Clicking the Main Window's close button * Pressing the Stop hotkey while in FullScreen mode This was particularly troublesome because the confirm dialog is modal, preventing the user from moving the render window out of the way if it was obscuring the dialog. Fixes https://bugs.dolphin-emu.org/issues/13247.
2024-08-27Merge pull request #13037 from ↵Tilka
Dentomologist/hotkeyscheduler_handle_wiimote_connections_independently HotkeyScheduler: Handle Wii Remote connections independently
2024-08-27RVZ: Fix undefined behaviour when copying 0 bytes to a null pointerFerdinand Bachmann
A vector of length 0 can have a null data pointer, which causes UB when passed to memcpy, so only copy when we actually have data to copy. This caused crashes in certain cases when compiling Dolphin with Clang and LTO enabled.
2024-08-26HotkeyScheduler: Handle Wii Remote connections independentlyDentomologist
Allow connecting or disconnecting multiple Wii Remotes simultaneously instead of only handling the highest index whose hotkey is pressed. This allows using a single hotkey to toggle multiple remotes.
2024-08-25Gameini: Enable PAL60 for "Project Zero II: Wii Edition"Patrick Ferry
2024-08-25Translation resources sync with TransifexJosJuice
2024-08-25Gameini: Enable PAL60 for "Boom Street"Patrick Ferry
2024-08-25Gameini: Enable PAL60 for "The Last Story"Patrick Ferry
2024-08-24Merge pull request #10663 from Tilka/ax_biquadTilka
AX: add support for biquad filtering
2024-08-24AX: add analytics quirks for wiimote filtersTillmann Karras
I'm fairly sure the implementation is correct but I've not been able to find a game that actually makes use of these filters.
2024-08-24AX: enable low-pass/biquad filtering of Wiimote audioTillmann Karras
2024-08-24AX: add support for biquad filteringTillmann Karras
This fixes e.g. the overly loud wind in "I SPY: Spooky Mansion".
2024-08-24Merge pull request #13009 from BryanJacobs/masterJosJuice
Graphics: Adapt aspect ratio when SBS/TAB 3D is used
2024-08-23Merge pull request #13033 from mitaclaw/remove-common-fillTilka
TypeUtils: Remove Common::Fill
2024-08-23Merge pull request #13034 from lycheefox/skylandersTilka
Skylanders: Fix Hot Head (Sparkle)
2024-08-22Skylanders: Fix Hot Head (Sparkle)lycheefox
2024-08-22TypeUtils: Remove Common::Fillmitaclaw
This temporary solution is no longer needed.
2024-08-22Add support for libfmt-11Alfred Wingate
fmt::join was moved into fmt/ranges.h Signed-off-by: Alfred Wingate <parona@protonmail.com>
2024-08-22Graphics: Adapt aspect ratio when SBS/TAB 3D is usedBryan Jacobs
Adds support for choosing to present the full resolution independently to each eye when using side-by-side or top-and-bottom 3D.
2024-08-21Merge pull request #13029 from JosJuice/sddressOatmealDome
DolphinQt: Fix "Sddress" typo
2024-08-21DolphinQt: Fix "Sddress" typoJosJuice
2024-08-21Merge pull request #13028 from lycheefox/skylandersOatmealDome
Skylanders: Add Mobile Hot Streak and fix typo
2024-08-20Skylanders: Add Mobile Hot Streak and fix typolycheefox
2024-08-21Merge pull request #13022 from tygyh/Remove-redundant-semicolonsTilka
Remove redundant semicolons
2024-08-20Translation resources sync with TransifexJosJuice
2024-08-20Remove redundant semicolonsDr. Dystopia
2024-08-19Merge pull request #12942 from nivomi/masterAdmiral H. Curtiss
RetroAchievements: Add instructive text to disabled login button
2024-08-19Add instructive text to disabled RetroAchievements login buttonNivekH
Changes the RetroAchievements "Log In" button's text to "To log in, stop the current emulation." when the button is disabled because an emulation session is active. This allows a user to understand why the button is disabled, and how this state can be resolved. Previously, it could be unclear why this button was disabled without an understanding of the underlying system. Co-Authored-By: JosJuice <josjuice@gmail.com>
2024-08-18Merge pull request #12974 from JosJuice/simplify-speed-limit-descriptionTilka
DolphinQt: Simplify the Speed Limit description
2024-08-18DolphinQt: Simplify the Speed Limit descriptionJosJuice
The description of the Speed Limit setting currently uses a lot of complicated terms, like "emulated time" (known to many Dolphin developers, but in my experience not known by even advanced emulator users) and "maximum time scale" (I have never heard it before). The meaning of "sustainable" is also unclear in context. This commit rewords the description to be easier to understand.
2024-08-18Merge pull request #12863 from JosJuice/android-gamepad-sensorsTilka
Android: Fix and enable input device sensor input
2024-08-18Merge pull request #12144 from khg8m3r/sdl2-updateAdmiral H. Curtiss
Externals: Update SDL to 2.30.6
2024-08-18Merge pull request #13021 from Pokechu22/stereo-post-processing-uiTilka
Fix postprocessing shader not changing when setting stereo mode
2024-08-18Merge pull request #13005 from Tilka/display_listTilka
VideoCommon: force display list alignment
2024-08-17Fix postprocessing shader not changing when setting stereo modePokechu22
Fixes https://bugs.dolphin-emu.org/issues/13593. Before, it would attempt to use the old shader, which did not exist for the new stereo mode. Changing the postprocessing shader afterwards would work properly, although passive 3D only has one option, so it was just broken without restarting Dolphin. This also fixes the UI not updating when using one of the stereo toggle hotkeys.
2024-08-18GameSettings: remove patches for "Wallace & Gromit in Project Zoo"Tillmann Karras
These patches were added in bde9a459cdd7a465cf9c9e275bd4562bb072ae7e and enabled by default in 36ecfdd6b597b0264625d06320a5308147bbc55b. They allowed the game to run in Dolphin but disabled dynamic shadows. The game adds 4 to the start address of otherwise valid display lists for no obvious reason. Now that Dolphin forces 32-byte alignment these patches are no longer needed.