1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00

Fixed typo

This commit is contained in:
Nikolay Kasyanov 2012-03-08 01:09:06 +04:00
parent 5328853445
commit 6357adffcf

View File

@ -124,7 +124,7 @@ namespace MWScript
}
};
class OpTogglePathgrind : public Interpreter::Opcode0
class OpTogglePathgrid : public Interpreter::Opcode0
{
public:
virtual void execute (Interpreter::Runtime& runtime)
@ -239,7 +239,7 @@ namespace MWScript
interpreter.installSegment5 (opcodeFadeIn, new OpFadeIn);
interpreter.installSegment5 (opcodeFadeOut, new OpFadeOut);
interpreter.installSegment5 (opcodeFadeTo, new OpFadeTo);
interpreter.installSegment5 (opcodeTogglePathgrid, new OpTogglePathgrind);
interpreter.installSegment5 (opcodeTogglePathgrid, new OpTogglePathgrid);
}
}
}