aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/alan2/decode.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2018-12-27 16:22:21 +0200
committerFilippos Karapetis2018-12-28 13:41:39 +0200
commitd96f9428b396be5342bfb0bdfe38a810a22e22fd (patch)
treedda487b50f293ed7978d9651efeea543af035a9a /engines/glk/alan2/decode.cpp
parentc6d6f8de0a0347932cd6fd1ec8ef5e12ce5e9de9 (diff)
downloadscummvm-rg350-d96f9428b396be5342bfb0bdfe38a810a22e22fd.tar.gz
scummvm-rg350-d96f9428b396be5342bfb0bdfe38a810a22e22fd.tar.bz2
scummvm-rg350-d96f9428b396be5342bfb0bdfe38a810a22e22fd.zip
GLK: ALAN2: Formatting fixes
Diffstat (limited to 'engines/glk/alan2/decode.cpp')
-rw-r--r--engines/glk/alan2/decode.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/alan2/decode.cpp b/engines/glk/alan2/decode.cpp
index ba144123c6..aaf297b759 100644
--- a/engines/glk/alan2/decode.cpp
+++ b/engines/glk/alan2/decode.cpp
@@ -94,7 +94,7 @@ int Decode::decodeChar() {
// Save so much about the decoding process, so it is possible to restore
// and continue later.
-DecodeInfo* Decode::pushDecode() {
+DecodeInfo *Decode::pushDecode() {
DecodeInfo *info = new DecodeInfo();
info->fpos = _txtFile->pos();
@@ -109,7 +109,7 @@ DecodeInfo* Decode::pushDecode() {
// Restore enough info about the decoding process, so it is possible to
// continue after having decoded something else
-void Decode::popDecode (DecodeInfo *info){
+void Decode::popDecode (DecodeInfo *info) {
_txtFile->seek(info->fpos, SEEK_CUR);
_decodeBuffer = info->buffer;
_bitsToGo = info->bits;