diff options
author | Filippos Karapetis | 2015-12-07 10:15:19 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2015-12-23 21:33:53 +0100 |
commit | 75c9d0b585b8468489e350f885b89af37b79b543 (patch) | |
tree | be7bb25138c6c23fdf8c104e8cdab198ad9bd103 | |
parent | 9cc30c3c6d6edb616bb76d15b46391bacf3e2052 (diff) | |
download | scummvm-rg350-75c9d0b585b8468489e350f885b89af37b79b543.tar.gz scummvm-rg350-75c9d0b585b8468489e350f885b89af37b79b543.tar.bz2 scummvm-rg350-75c9d0b585b8468489e350f885b89af37b79b543.zip |
LAB: Fix spelling
-rw-r--r-- | engines/lab/intro.cpp | 4 | ||||
-rw-r--r-- | engines/lab/processroom.cpp | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/engines/lab/intro.cpp b/engines/lab/intro.cpp index 4b0ed66f56..da44916a92 100644 --- a/engines/lab/intro.cpp +++ b/engines/lab/intro.cpp @@ -38,8 +38,8 @@ Intro::Intro(LabEngine *vm) : _vm(vm) { } /******************************************************************************/ -/* Goes thru, and responds to all the intuition messages currently in the */ -/* the message port. */ +/* Goes through, and responds to all the intuition messages currently in the */ +/* message queue. */ /******************************************************************************/ void Intro::introEatMessages() { while (1) { diff --git a/engines/lab/processroom.cpp b/engines/lab/processroom.cpp index 1487888b27..0b43966d98 100644 --- a/engines/lab/processroom.cpp +++ b/engines/lab/processroom.cpp @@ -651,7 +651,7 @@ static bool doOperateRuleSub(int16 itemNum, int16 roomNum, CloseDataPtr lcptr, C } /*****************************************************************************/ -/* Goes thru the rules if the user tries to operate an item on an object. */ +/* Goes through the rules if the user tries to operate an item on an object. */ /*****************************************************************************/ bool doOperateRule(int16 x, int16 y, int16 ItemNum, CloseDataPtr *lcptr) { CloseDataPtr tlcptr; @@ -685,7 +685,7 @@ bool doOperateRule(int16 x, int16 y, int16 ItemNum, CloseDataPtr *lcptr) { } /*****************************************************************************/ -/* Goes thru the rules if the user tries to go forward. */ +/* Goes through the rules if the user tries to go forward. */ /*****************************************************************************/ bool doGoForward(CloseDataPtr *lcptr) { RuleList *rules = g_lab->_rooms[g_lab->_roomNum]._rules; @@ -703,7 +703,7 @@ bool doGoForward(CloseDataPtr *lcptr) { } /*****************************************************************************/ -/* Goes thru the rules if the user tries to turn. */ +/* Goes through the rules if the user tries to turn. */ /*****************************************************************************/ bool doTurn(uint16 from, uint16 to, CloseDataPtr *lcptr) { from++; @@ -726,7 +726,7 @@ bool doTurn(uint16 from, uint16 to, CloseDataPtr *lcptr) { } /*****************************************************************************/ -/* Goes thru the rules if the user tries to go to the main view */ +/* Goes through the rules if the user tries to go to the main view */ /*****************************************************************************/ bool doMainView(CloseDataPtr *lcptr) { RuleList *rules = g_lab->_rooms[g_lab->_roomNum]._rules; |