diff options
author | Strangerke | 2013-07-19 14:08:17 +0200 |
---|---|---|
committer | Strangerke | 2013-07-19 14:08:17 +0200 |
commit | 388b4a7b3390282b118a8b0720ae3a07c91f1934 (patch) | |
tree | 2419af3860f7ff3671f87a0c224c5a9b30d8c9ca /devtools/extract_mort | |
parent | 220088d6e881988d7346adff02ff7d39e0ea00de (diff) | |
download | scummvm-rg350-388b4a7b3390282b118a8b0720ae3a07c91f1934.tar.gz scummvm-rg350-388b4a7b3390282b118a8b0720ae3a07c91f1934.tar.bz2 scummvm-rg350-388b4a7b3390282b118a8b0720ae3a07c91f1934.zip |
TOOLS: Janitorial: remove trailing spaces in extract_mort
Diffstat (limited to 'devtools/extract_mort')
-rw-r--r-- | devtools/extract_mort/extract_mort.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devtools/extract_mort/extract_mort.cpp b/devtools/extract_mort/extract_mort.cpp index 0164030769..fd6d8848af 100644 --- a/devtools/extract_mort/extract_mort.cpp +++ b/devtools/extract_mort/extract_mort.cpp @@ -40,7 +40,7 @@ #include "common/endian.h" enum AccessMode { - kFileReadMode = 1, + kFileReadMode = 1, kFileWriteMode = 2 }; @@ -108,7 +108,7 @@ public: fseek (f, 0, SEEK_END); int end = ftell (f); fseek (f, pos, SEEK_SET); - + return end; } }; @@ -228,7 +228,7 @@ static void addCompressedValue(int oct, int &indis, int &point, uint16 *strData) if (point < 5) { // Overlapping into next word ++indis; - + // Get the bits that fall into the next word and set it int remainder = oct & ((1 << (5 - point)) - 1); strData[indis] |= remainder << (16 - (5 - point)); |