summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-05-27service: hid: Refractor sixaxis functionsgerman77
2022-05-27service: hid: Implement MergeSingleJoyAsDualJoy according to REgerman77
2022-05-27service: hid: Add error handling to setNpadAssignment and variantsgerman77
2022-05-27service: hid: Quick RE fixes and commentsgerman77
2022-05-20Merge pull request #8342 from lat9nq/clang-latest-stdc++liamwhite
general: Use Common::U16StringFromBuffer in place of QString::toStdU16String
2022-05-17video_core: Support new VkResultAlexandre Bouvier
2022-05-16qt_software_keyboard: Address review feedbacklat9nq
Use auto and a more descriptive variable name. Secondly, fix some C++ misconceptions or constructing too many objects. Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com> Co-authored-by: Lioncash <mathew1800@gmail.com>
2022-05-15main: Use Common::U16StringFromBufferlat9nq
See ffd3afcf2
2022-05-15qt_software_keyboard: Use Common::U16StringFromBufferlat9nq
See ffd3afcf2
2022-05-15string_util: Add U16StringFromBufferlat9nq
Qt's QString::toStdU16String doesn't work when compiling against the latest libstdc++, at least when using Clang. This function effectively does the same thing as the aforementioned one.
2022-05-14general: Avoid ambiguous format_to compilation errorsLioncash
Ensures that we're using the fmt version of format_to. These are also the only three outliers. All of the other formatters we have are properly qualified.
2022-05-11Merge pull request #8308 from german77/disablesixMorph
service: hid: Disable correctly motion input
2022-05-11Merge pull request #8314 from liamwhite/gl-flip-2Morph
OpenGL: interpret face flips according to GL NDC
2022-05-11Merge pull request #8313 from liamwhite/dma-bppMorph
maxwell_dma: fix bytes_per_pixel
2022-05-10maxwell_dma: use fallback if remapping is enabledLiam
2022-05-10video_core/macro: clear code on upload address assignmentLiam
2022-05-08VideoCore: Add option to dump the macros.Fernando Sahmkow
Co-Authored-By: liamwhite <liamwhite@users.noreply.github.com>
2022-05-08video_core/macro_jit_x64: warn on invalid parameter accessLiam
2022-05-06OpenGL: implement face flips according to NDCLiam
2022-05-06maxwell_dma: fix bytes per pixelLiam
2022-05-06service: hid: Fix motion refresh rateNarr the Reg
2022-05-06service: hid: Disable correctly motion inputgerman77
2022-05-03hle/result: Update std::expected replacement messageMorph
std::expected is included in C++23
2022-05-03hle/result: Add ResultRange overload in ResultValMorph
Also marks the implicit conversion operator as constexpr instead of consteval as the constructor is not constant evaluated.
2022-05-03Merge pull request #8272 from german77/stick_rangebunnei
yuzu: config: Improve analog stick mapping
2022-05-02hle/result: Implement ResultRangeMorph
A ResultRange defines an inclusive range of error descriptions within an error module. This can be used to check whether the description of a given ResultCode falls within the range. The conversion function returns a ResultCode with its description set to description_start.
2022-05-01ui: retranslate the network tabKyle K
Looks like it was just missed when it was added, as currently the Network Tab only has one item RetranslateUI is used more commonly throughout the project
2022-04-30ui: let system locale control format of Custom RTCKyle K
The Custom RTC widget is under the influence of the computers System Locale. The format strings are not necessarily related. As a small example, setting the Windows Language to Dansk, and then trying to use yuzu in English the requested AM/PM indicator is simply not shown The display format for the Custom RTC field needs to be removed from src/yuzu/configuration/configure_system.ui modifying the display format needs to be moved to src/yuzu/configuration/configure_system.cpp
2022-04-29Merge pull request #8274 from german77/firmwareMorph
service: hid: Stub IsFirmwareUpdateNeededForNotification
2022-04-28Merge pull request #8280 from Tachi107/spdx-fixupMai M
chore: add missing SPDX tags
2022-04-28Merge pull request #8282 from liamwhite/gcc-12Mai M
GCC 12 fixes
2022-04-28GCC 12 fixesLiam
2022-04-28chore: add missing SPDX tagsAndrea Pappacoda
Follow-up to 99ceb03a1cfcf35968cab589ea188a8c406cda52
2022-04-27Merge pull request #8267 from Morph1984/swapbuffersbunnei
renderer_vulkan: Update screen info if the framebuffer size has changed
2022-04-27Merge pull request #8236 from Docteh/sort_translationsMai M
Changes to language order in General -> UI -> Interface Language
2022-04-27Merge pull request #8229 from german77/reinterpret2bunnei
service: hid: Access shared memory directly
2022-04-27Changes to language order in General -> UI -> Interface LanguageKyle K
Language List is from Dolphin, specifically https://github.com/dolphin-emu/dolphin/blob/master/Source/Core/DolphinQt/Settings/InterfacePane.cpp#L30 Any languages that are compiled in, but not in the list will be at the end.
2022-04-27service: hid: Stub IsFirmwareUpdateNeededForNotificationgerman77
Used in Fitness Boxing 2: Rhythm & Exercise (0100073011382000)
2022-04-26yuzu: Config allow to delete single axis directions when buttons are mapped ↵Narr the Reg
to a stick
2022-04-26yuzu: config: Set default range to 95%Narr the Reg
2022-04-26renderer_vulkan: Update screen info if the framebuffer size has changedMorph
2022-04-24Merge pull request #8261 from liamwhite/jit-cleanupMai M
service: jit: document and clean up
2022-04-24service: jit: document and clean upLiam
2022-04-24Merge pull request #8260 from Morph1984/c4146Mai M
kernel: svc: Replace -1ULL with 0xFFFFFFFFFFFFFFFF
2022-04-24kernel: svc: Replace -1ULL with 0xFFFFFFFFFFFFFFFFMorph
Resolves the C4146 compiler warning on MSVC.
2022-04-24Remove unused PrepareReschedule functionMerry
2022-04-23service: hid: Ensure all structs are initializedNarr the Reg
2022-04-23service: hid: Access shared memory directlyNarr the Reg
2022-04-23Merge pull request #8249 from german77/queuedMorph
hotkeys: Trigger actions on a separate thread
2022-04-23hotkeys: Trigger actions on a separate threadNarr the Reg