1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-04-17 02:42:45 +00:00

fixed a spelling mistake

This commit is contained in:
Marc Zinnschlag 2013-03-09 15:39:49 +01:00
parent 2cc20c67cb
commit b255472cc6

View File

@ -53,7 +53,7 @@ namespace Interpreter
virtual void execute (Runtime& runtime, unsigned int arg0)
{
if (arg0==0)
throw std::logic_error ("inifite loop");
throw std::logic_error ("infinite loop");
runtime.setPC (runtime.getPC()+arg0-1);
}
@ -66,7 +66,7 @@ namespace Interpreter
virtual void execute (Runtime& runtime, unsigned int arg0)
{
if (arg0==0)
throw std::logic_error ("inifite loop");
throw std::logic_error ("infinite loop");
runtime.setPC (runtime.getPC()-arg0-1);
}