diff options
| author | 2018-09-01 19:15:03 +1000 | |
|---|---|---|
| committer | 2018-09-01 19:15:03 +1000 | |
| commit | 2bc6abb9a17cdf914c0a2462aec524bace195b13 (patch) | |
| tree | b68c59d22493d6e766194cb3c079b1446bc32ca1 /src | |
| parent | Added FFMA asserts (diff) | |
| download | yuzu-2bc6abb9a17cdf914c0a2462aec524bace195b13.tar.gz yuzu-2bc6abb9a17cdf914c0a2462aec524bace195b13.tar.xz yuzu-2bc6abb9a17cdf914c0a2462aec524bace195b13.zip | |
Changed tab5980_0 default from 0 -> 1
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_shader_decompiler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp index 88b4e4324..1d1ddb39b 100644 --- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp +++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp | |||
| @@ -1438,8 +1438,8 @@ private: | |||
| 1438 | 1438 | ||
| 1439 | ASSERT_MSG(instr.ffma.saturate == 0, "FFMA Saturate not implemented"); | 1439 | ASSERT_MSG(instr.ffma.saturate == 0, "FFMA Saturate not implemented"); |
| 1440 | ASSERT_MSG(instr.ffma.cc == 0, "FFMA cc not implemented"); | 1440 | ASSERT_MSG(instr.ffma.cc == 0, "FFMA cc not implemented"); |
| 1441 | ASSERT_MSG(instr.ffma.tab5980_0 == 0, "FFMA tab5980_0({}) not implemented", | 1441 | ASSERT_MSG(instr.ffma.tab5980_0 == 1, "FFMA tab5980_0({}) not implemented", |
| 1442 | instr.ffma.tab5980_0.Value()); | 1442 | instr.ffma.tab5980_0.Value()); // Seems to be 1 by default based on SMO |
| 1443 | ASSERT_MSG(instr.ffma.tab5980_1 == 0, "FFMA tab5980_1({}) not implemented", | 1443 | ASSERT_MSG(instr.ffma.tab5980_1 == 0, "FFMA tab5980_1({}) not implemented", |
| 1444 | instr.ffma.tab5980_1.Value()); | 1444 | instr.ffma.tab5980_1.Value()); |
| 1445 | 1445 | ||