1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-21 11:23:51 +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);
}
}
}