From b523c746864d3cf9c69ed844ff3db710de64cae7 Mon Sep 17 00:00:00 2001 From: raven02 Date: Mon, 2 Sep 2013 19:39:26 +0800 Subject: [PATCH] Minor fix the ERROR_LOG_REPORT_ONCE in ReadColor1() --- GPU/GLES/VertexDecoder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPU/GLES/VertexDecoder.h b/GPU/GLES/VertexDecoder.h index f839c80cf9..62bcd65abf 100644 --- a/GPU/GLES/VertexDecoder.h +++ b/GPU/GLES/VertexDecoder.h @@ -370,7 +370,7 @@ public: memcpy(color, data_ + decFmt_.c1off, 12); break; default: - ERROR_LOG_REPORT_ONCE(fmt, G3D, "Reader: Unsupported C1 Format %d", decFmt_.c0fmt); + ERROR_LOG_REPORT_ONCE(fmt, G3D, "Reader: Unsupported C1 Format %d", decFmt_.c1fmt); memset(color, 0, sizeof(float) * 3); break; }