Fix #67 bad NELID in vertex program parser
This commit is contained in:
parent
88b2a1a38d
commit
08a4d9eb11
1 changed files with 1 additions and 1 deletions
|
@ -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
|
// 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)
|
if (instr.Dest.Type == CVPOperand::AddressRegister)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue