summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-06-14JitArm64: Use immediates more in fres routineJosJuice
Not sure why I didn't do this to begin with. Maybe I was under the impression that the most significant bit of a 12-bit immediate was a sign bit.
2023-06-14Merge pull request #11946 from Dentomologist/convert_fromwhichroot_to_enum_classAdmiral H. Curtiss
Common: Convert FromWhichRoot to enum class
2023-06-14Merge pull request #11942 from ↵Admiral H. Curtiss
Dentomologist/convert_controlleremu_translatability_to_enum_class ControllerEmu: Convert Translatability to enum class
2023-06-14Merge pull request #11944 from lioncash/castsAdmiral H. Curtiss
PPCCache: Remove redundant reinterpret_casts
2023-06-14Merge pull request #11947 from InfoManiac742/patch-2Admiral H. Curtiss
Fix white bars in Ice Age 2: The Meltdown (GC)
2023-06-13Fix white bars in Ice Age 2: The Meltdown (GC)InfoManiac742
Defer EFB Copies to RAM is necessary in order to avoid white bars obscuring the screen: see https://wiki.dolphin-emu.org/index.php?title=Ice_Age_2:_The_Meltdown_(GC)#White_Bars
2023-06-13Common: Convert FromWhichRoot to enum classDentomologist
2023-06-13Merge pull request #11925 from JosJuice/android-fix-dpadCharles Lombardo
Android: Fix overlay d-pad
2023-06-13Use getCacheDir if getExternalCacheDir returns null.Marcel Alexandru Nitan
2023-06-13Android: Fix overlay d-pad not working until finger movesJosJuice
A switch case fallthrough was overlooked when translating from Java to Kotlin.
2023-06-13Android: Fix pressing up on overlay d-padJosJuice
2023-06-13PPCCache: Remove redundant reinterpret_castsLioncash
The pointer is being passed to functions that take arguments as void*, so we don't need to cast here.
2023-06-13Merge pull request #11941 from ↵Admiral H. Curtiss
Dentomologist/convert_blockingloop_stopmode_to_enum_class Common: Convert BlockingLoop::StopMode to enum class
2023-06-13Merge pull request #11930 from iwubcode/game_texture_validationAdmiral H. Curtiss
VideoCommon: don't reject game textures which have the wrong size
2023-06-12VideoCommon: don't treat incorrect aspect ratio or sizes that aren't a ↵iwubcode
multiple of native textures as an error
2023-06-12ControllerEmu: Convert Translatability to enum classDentomologist
2023-06-12Common: Convert BlockingLoop::StopMode to enum classDentomologist
2023-06-13Merge pull request #11940 from lioncash/debugifaceAdmiral H. Curtiss
Common: Move DebugInterface.h into Core
2023-06-12Revert "Android: Temporarily disable host thread check"JosJuice
This reverts commit 361171fce087cad73d94f0d9fd81a66069f9af4f.
2023-06-12Android: Add HostThreadLock where necessaryJosJuice
2023-06-12Android: And Lock and Unlock wrappers to HostThreadLockJosJuice
This way we can ensure DeclareAsHostThread and UndeclareAsHostThread are called when locking and unlocking.
2023-06-12Android: Move host thread lock to a separate fileJosJuice
2023-06-12XEmitter: Add enum class JumpDentomologist
Replace the bool parameter force5bytes in J, JMP, and J_CC with an enum class Jump::Short/Near. Many callers set that parameter to the literal 'true', which was unclear if you didn't already know what it did.
2023-06-12Merge pull request #11863 from Minty-Meeo/nkit-extractJMC47
Remove NKit data when extracting a GCN/Wii disc volume
2023-06-12Merge pull request #11939 from lioncash/conditionAdmiral H. Curtiss
BreakpointDialog: Mark breakpoint help text as translatable
2023-06-12Merge pull request #11938 from lioncash/initsAdmiral H. Curtiss
ParallelProgressDialog: Initialize all data members
2023-06-12Merge pull request #11937 from lioncash/skyAdmiral H. Curtiss
SkylanderPortalWindow: Detranslate unnecessary strings
2023-06-12Common: Move DebugInterface.h into CoreLioncash
The base DebugInterface now depends on the Core's CPUThreadGuard, and utilities in Common shouldn't be depending on Core facilities. So, we can move this into the core library instead.
2023-06-12BreakpointDialog: Mark breakpoint help text as translatableLioncash
We already mark the title of the dialog box as translatable, so it would be a bit odd to not mark the containing text as translatable too.
2023-06-12ParallelProgressDialog: Mark WasCanceled() as constLioncash
This doesn't alter any class state.
2023-06-12ParallelProgressDialog: Initialize all data membersLioncash
Ensures we always have a deterministic state.
2023-06-12SkylanderPortalWindow: Detranslate unnecessary stringsLioncash
This doesn't need to be handled by translators, since they're not user-displayed text or just don't need to be translated. While we're at it, we don't need to copy each entry of the resulting list.
2023-06-12Merge pull request #11936 from lioncash/baseAdmiral H. Curtiss
InfinityBaseWindow: Remove unnecessary system instance accessor
2023-06-12InfinityBaseWindow: Remove unnecessary system instance accessorLioncash
GetFigureList() is a static member function, so we can just call it directly instead of going through the system instance.
2023-06-11Android: Target Java 17Charles Lombardo
2023-06-11Android: Update Kotlin to 1.8.21Charles Lombardo
Additionally updates the serialization plugin to match
2023-06-11Android: Update dependenciesCharles Lombardo
2023-06-11Android: Upgrade to AGP 8.0.2Charles Lombardo
2023-06-11Merge pull request #11931 from t895/build-flag-fixCharles Lombardo
Android: Fix use of deprecated JVM flag
2023-06-12Merge pull request #10976 from TellowKrinkle/StackFramesOatmealDome
Improve stack frames for profilers
2023-06-11Android: Fix use of deprecated JVM flagCharles Lombardo
2023-06-11Qt: Send SizeChanged on DPI changesTellowKrinkle
2023-06-11VideoCommon: Update imgui scale when dpi changesTellowKrinkle
2023-06-11Merge pull request #11928 from K0bin/adrenotools-release-build-fixCharles Lombardo
Android: Fix Adrenotools in release builds
2023-06-11Merge pull request #11927 from JosJuice/android-custom-file-extension-localeCharles Lombardo
Android: Check file name extensions locale-independently
2023-06-11Android: Fix Adrenotools in release buildsRobin Kertels
2023-06-11Merge pull request #11867 from K0bin/adrenotoolsJMC47
Implement loading custom drivers on Android
2023-06-11Android: Check file name extensions locale-independentlyJosJuice
A very minor bug that became more obvious when this code was translated to Kotlin.
2023-06-11Merge pull request #11921 from t895/kotlin-fragmentsJosJuice
Android: Convert "fragments" package to Kotlin
2023-06-11Android: Implement a UI for AdrenotoolsRobin Kertels