diff options
author | Torbjörn Andersson | 2010-09-26 15:46:25 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2010-09-26 15:46:25 +0000 |
commit | 5537ac91bf6fe1fed9c08a00f26aeab1e38db85a (patch) | |
tree | 59e37dbe694ae4392ea4791f903fc5ffff1b9efd /engines | |
parent | ad0200988832697ae2531a45a7ca53870afea6d0 (diff) | |
download | scummvm-rg350-5537ac91bf6fe1fed9c08a00f26aeab1e38db85a.tar.gz scummvm-rg350-5537ac91bf6fe1fed9c08a00f26aeab1e38db85a.tar.bz2 scummvm-rg350-5537ac91bf6fe1fed9c08a00f26aeab1e38db85a.zip |
JANITORIAL: Removed unnecessary semi-colons.
svn-id: r52910
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hugo/hugo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/hugo/hugo.cpp b/engines/hugo/hugo.cpp index 5243c1e492..122022ab8a 100644 --- a/engines/hugo/hugo.cpp +++ b/engines/hugo/hugo.cpp @@ -543,9 +543,9 @@ bool HugoEngine::loadHugoDat() { for (int i = 0; i < numElem; i++) { numSubElem = in.readUint16BE(); for (int j = 0; j < numSubElem; j++) { - in.readUint16BE();; - in.readUint16BE();; - in.readSint16BE();; + in.readUint16BE(); + in.readUint16BE(); + in.readSint16BE(); in.readByte(); in.readByte(); in.readByte(); |