From 08a4d9eb11607a08f98d28669f0d1305b5664f0c Mon Sep 17 00:00:00 2001 From: kaetemi Date: Sun, 6 Oct 2013 20:06:53 +0200 Subject: [PATCH] Fix #67 bad NELID in vertex program parser --- code/nel/src/3d/vertex_program_parse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/src/3d/vertex_program_parse.cpp b/code/nel/src/3d/vertex_program_parse.cpp index af3a70b96..40ac2282e 100644 --- a/code/nel/src/3d/vertex_program_parse.cpp +++ b/code/nel/src/3d/vertex_program_parse.cpp @@ -885,7 +885,7 @@ bool CVPParser::parseInstruction(CVPInstruction &instr, std::string &errorOutput } // it is not allowed to write to an adress register except for ARL - if (instrStr != NELID("ARL")) + if (instrStr != NELID("ARL ")) { if (instr.Dest.Type == CVPOperand::AddressRegister) {