summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Rodrigo Locatti2019-09-14 22:51:18 -0300
committerGravatar GitHub2019-09-14 22:51:18 -0300
commit193bfefce4d40c9b3f244d416a0c24da276b0869 (patch)
treedea622189db37a91938c525476b975d462d7f220
parentRevert "Revert #2466" and stub FirmwareCall 4 (diff)
downloadyuzu-193bfefce4d40c9b3f244d416a0c24da276b0869.tar.gz
yuzu-193bfefce4d40c9b3f244d416a0c24da276b0869.tar.xz
yuzu-193bfefce4d40c9b3f244d416a0c24da276b0869.zip
maxwell_3d: Update firmware 4 call stub commentary
Diffstat (limited to '')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index f2cffd8ef..5f7738e7b 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -425,7 +425,8 @@ void Maxwell3D::ProcessMacroBind(u32 data) {
425void Maxwell3D::ProcessFirmwareCall4() { 425void Maxwell3D::ProcessFirmwareCall4() {
426 LOG_WARNING(HW_GPU, "(STUBBED) called"); 426 LOG_WARNING(HW_GPU, "(STUBBED) called");
427 427
428 // For details refer to #2501 428 // Firmware call 4 is a blob that changes some registers depending on its parameters.
429 // These registers don't affect emulation and so are stubbed by setting 0xd00 to 1.
429 regs.reg_array[0xd00] = 1; 430 regs.reg_array[0xd00] = 1;
430} 431}
431 432