Morph
e1e6c62dd9
configure_input_player: Eliminate variable shadowing
4 years ago
Morph
30dc4a1d78
configure_dialog: Eliminate variable shadowing
4 years ago
Morph
6134852675
bootmanager: Eliminate variable shadowing
4 years ago
Morph
7e75b94e3b
game_list: Eliminate variable shadowing
4 years ago
Mai
c2c39c564a
Merge pull request #8459 from Morph1984/wextra-gcc
vk_compute_pass: Silence Wextra warning
4 years ago
Morph
049eb899e9
externals: microprofileui: Eliminate variable shadowing
4 years ago
Morph
b3d8533ad9
vk_compute_pass: Silence Wextra warning
Silences a warning about using enumerated and non-enumerated types in a conditional expression.
4 years ago
Liam
f91e2f2742
kernel: fix passthrough of local captures in lambda
4 years ago
Liam
846f266199
common/assert: rework ASSERT handling to avoid std::function usage
4 years ago
Liam
79bf4bc3ff
general: fix compilation on MinGW GCC 12
4 years ago
Liam
855928b782
common/assert: add unlikely
4 years ago
Liam
f3fd1038bb
general: fix compilation on GCC 12
4 years ago
Liam
72abaf896f
kernel: ensure class token lambda exit is unreachable
4 years ago
Liam
32ba68cf0e
kernel: fix inconsistency in AutoObjectTraits macro definitions
4 years ago
Liam
d2af4f8142
common: Don't test ASSERT conditions inline
4 years ago
Liam
c1771c98f3
common: Change semantics of UNREACHABLE to unconditionally crash
4 years ago
liamwhite
063d8354a7
Merge pull request #8458 from lat9nq/no-constexpr-flow-block
structured_control_flow: Remove constexpr Flow::Block
4 years ago
lat9nq
e8fc40baa1
structured_control_flow: Remove constexpr Flow::Block
This seems to be unsupported in newer libstdc++ versions due to
Flow::Block's base class being a non-literal type. It's not clear to me
why this was permitted in earlier versions.
4 years ago
bunnei
9cd39d1880
Merge pull request #8388 from liamwhite/simpler-pause
CpuManager: simplify pausing
4 years ago
Morph
6cbe898149
yuzu_cmd: Eliminate variable shadowing
4 years ago
Morph
6e1f9fa7b8
audio_core: Remove -Werror=unused-parameter
Removing this as we don't enforce unused parameter warnings elsewhere in the project, and explicitly specify -Wno-unused-parameter in the main CMakeLists.
4 years ago
Morph
e647661b76
CMakeLists: Make variable shadowing a compile-time error
Now that the entire project is free of variable shadowing, we can enforce this as a compile time error to prevent any further introduction of this logic bug.
4 years ago
Morph
ebf9030aa0
externals: microprofile: Eliminate variable shadowing
4 years ago
Morph
716cced399
common: Eliminate variable shadowing
GCC/Clang treats variables within lambdas as potentially shadowing those outside the lambda, despite them not being captured inside the lambda's capture list.
4 years ago
Morph
911eae6283
yuzu: Eliminate variable shadowing
4 years ago
Morph
56114589a6
web_service: Eliminate variable shadowing
4 years ago
Morph
9f2fca7cde
Merge pull request #8446 from liamwhite/cmd-gdb
core/debugger: support operation in yuzu-cmd
4 years ago
Morph
a9fd06479a
Merge pull request #8454 from liamwhite/inaddr-any
core/debugger: allow remote connections
4 years ago
bunnei
0cba34825d
Merge pull request #8443 from liamwhite/code-mem
kernel: fix KCodeMemory initialization
4 years ago
Liam
2328945c5a
core/debugger: allow remote connections
4 years ago
liamwhite
07c2cde188
Merge pull request #8450 from lioncash/undef
gdbstub_arch: Add missing virtual destructor
4 years ago
Lioncash
d3d5f85f98
gdbstub_arch: Add missing virtual destructor
The class is used polymorphically, so it's undefined behavior to delete
instances of GDBStubA64 and GDBStubA32 from the base class pointer.
4 years ago
Mai M
3f1dcac212
Merge pull request #8353 from Docteh/msvc_report_runtime
log the MSVC runtime version when running on MSVC build
4 years ago
Mai M
8144911772
Merge pull request #8427 from Docteh/deprecate_qdesktop
deprecate usage of QDesktopWidget for going fullscreen
4 years ago
Mai M
005547429c
Merge pull request #8449 from Docteh/translate_placeholder
retranslate the game list placeholder
4 years ago
bunnei
90c076df6b
Merge pull request #8413 from behunin/bounded-queue
gpu_thread: Move to bounded queue
4 years ago
bunnei
d52485dd46
Merge pull request #8393 from lat9nq/default-vulkan
general: Set renderer_backend's default to Vulkan
4 years ago
Kyle Kienapfel
6f191a97f5
log the MSVC runtime version when running on MSVC build
This might be useful information, not 100% sure.
[ 0.958068] Frontend <Info> yuzu\main.cpp:GMainWindow:275: yuzu Version: yuzu Development Build | master-6f622de3a-dirty
[ 0.958095] Frontend <Info> yuzu\main.cpp:LogRuntimes:220: MSVC Compiler: 1931 Runtime: 14.32.31326.0
4 years ago
Kyle Kienapfel
7a2ebd7de5
UI: retranslate the game list placeholder
This is the "Double-click to add a new folder to the game list" message
that shows up when users first launch yuzu and is most likely never seen
again. Previously this message was not re-translated.
4 years ago
Mai M
677177a0e1
Merge pull request #8405 from Docteh/dock_undock
ui: Status bars dock button becomes DOCKED/HANDHELD button
4 years ago
Mai M
56a0a3082d
Merge pull request #8333 from Docteh/translate_hotkeys
UI: Translate hotkey labels in configuration
4 years ago
Mai M
05ff801f8c
Merge pull request #8318 from Docteh/cmake-qt56-entry
Update some files with Qt 5.15.2 best practices in mind
4 years ago
Mai M
6edc47d865
Merge pull request #8448 from german77/gesturetypo
service: hid: Fix gesture regression
4 years ago
Narr the Reg
1226a99d1f
service: hid: Fix gesture regression
4 years ago
Liam
57679dbf51
yuzu-cmd: ignore bogus timeous from SDL
4 years ago
Liam
c14f683322
core/debugger: fix a number of shutdown deadlocks
4 years ago
Liam
b09ff19f31
core/debugger: support operation in yuzu-cmd
4 years ago
Liam
524737d29b
kernel: fix KCodeMemory initialization
4 years ago
Liam
5772327b39
CpuManager: simplify pausing
4 years ago
bunnei
3941e5db4d
Merge pull request #8428 from bunnei/nvflinger-fix-timing
Follow-up fixes for NVFlinger rewrite (Part 3)
4 years ago