diff options
author | Eugene Sandulenko | 2015-12-03 19:52:33 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2015-12-23 21:33:49 +0100 |
commit | c6041a41a3172c23f8c4170fc83a1949e9c832a1 (patch) | |
tree | 45eeb329e308ac6c6431ab71cd3b17d271202b53 | |
parent | c320e6d0aea4a70f8fe1df691432f5900a4f6625 (diff) | |
download | scummvm-rg350-c6041a41a3172c23f8c4170fc83a1949e9c832a1.tar.gz scummvm-rg350-c6041a41a3172c23f8c4170fc83a1949e9c832a1.tar.bz2 scummvm-rg350-c6041a41a3172c23f8c4170fc83a1949e9c832a1.zip |
LAB: More renames
-rw-r--r-- | engines/lab/parsefun.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/lab/parsefun.h b/engines/lab/parsefun.h index 37ff977851..ad8f04b0e9 100644 --- a/engines/lab/parsefun.h +++ b/engines/lab/parsefun.h @@ -38,7 +38,7 @@ namespace Lab { /* From Parser.c */ -bool parse(const char *InputFile); +bool parse(const char *inputFile); /* From allocRoom.c */ @@ -48,14 +48,14 @@ void freeRoomBuffer(); /* From ProcessRoom.c */ -ViewData *getViewData(uint16 RoomNum, uint16 Direction); +ViewData *getViewData(uint16 roomNum, uint16 direction); char *getPictName(CloseDataPtr *lcptr); void drawDirection(CloseDataPtr lcptr); -bool processArrow(uint16 *Direction, uint16 Arrow); +bool processArrow(uint16 *direction, uint16 arrow); void setCurClose(Common::Point pos, CloseDataPtr *cptr, bool useAbsoluteCoords = false); bool takeItem(uint16 x, uint16 y, CloseDataPtr *cptr); -bool doActionRule(Common::Point pos, int16 action, int16 RoomNum, CloseDataPtr *lcptr); -bool doOperateRule(int16 x, int16 y, int16 ItemNum, CloseDataPtr *lcptr); +bool doActionRule(Common::Point pos, int16 action, int16 roomNum, CloseDataPtr *lcptr); +bool doOperateRule(int16 x, int16 y, int16 itemNum, CloseDataPtr *lcptr); bool doGoForward(CloseDataPtr *lcptr); bool doTurn(uint16 from, uint16 to, CloseDataPtr *lcptr); bool doMainView(CloseDataPtr *lcptr); |