From 59599a62d3e23dd862e13bf2605a044c51c9b6d5 Mon Sep 17 00:00:00 2001 From: raven02 Date: Thu, 5 Sep 2013 16:00:11 +0800 Subject: [PATCH] Build fix --- GPU/Software/Rasterizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPU/Software/Rasterizer.cpp b/GPU/Software/Rasterizer.cpp index c42d671b57..542599f5bf 100644 --- a/GPU/Software/Rasterizer.cpp +++ b/GPU/Software/Rasterizer.cpp @@ -299,7 +299,7 @@ static inline bool DepthTestPassed(int x, int y, u16 z) if (gstate.isModeClear()) return true; - switch (gstate.getDepthTestFunc()) { + switch (gstate.getDepthTestFunction()) { case GE_COMP_NEVER: return false;