summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Tony Wasserka2014-12-20 15:31:17 +0100
committerGravatar Tony Wasserka2014-12-20 18:06:56 +0100
commit08f42c2b8c30d55f5c931f2260a0900ff902735c (patch)
treec47c2f68f50005bfb5c4003831f3977aec0be3ca
parentPica/VertexShader: Small optimization. (diff)
downloadyuzu-08f42c2b8c30d55f5c931f2260a0900ff902735c.tar.gz
yuzu-08f42c2b8c30d55f5c931f2260a0900ff902735c.tar.xz
yuzu-08f42c2b8c30d55f5c931f2260a0900ff902735c.zip
Pica/VertexShader: Promote a log message to critical status.
-rw-r--r--src/video_core/vertex_shader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/vertex_shader.cpp b/src/video_core/vertex_shader.cpp
index de963f5e9..4ba69fa51 100644
--- a/src/video_core/vertex_shader.cpp
+++ b/src/video_core/vertex_shader.cpp
@@ -150,7 +150,7 @@ static void ProcessShaderCode(VertexShaderState& state) {
150 // TODO: We don't really support this properly: For instance, the address register 150 // TODO: We don't really support this properly: For instance, the address register
151 // offset needs to be applied to SRC2 instead, etc. 151 // offset needs to be applied to SRC2 instead, etc.
152 // For now, we just abort in this situation. 152 // For now, we just abort in this situation.
153 LOG_ERROR(HW_GPU, "Bad condition..."); 153 LOG_CRITICAL(HW_GPU, "Bad condition...");
154 exit(0); 154 exit(0);
155 } 155 }
156 156