aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/vol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/vol.cpp')
-rw-r--r--engines/cge/vol.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cge/vol.cpp b/engines/cge/vol.cpp
index 46282d2bbe..9b6489afab 100644
--- a/engines/cge/vol.cpp
+++ b/engines/cge/vol.cpp
@@ -56,7 +56,7 @@ VFILE::VFILE(const char *name, IOMODE mode)
EndMark = (BufMark = BegMark = kp->Mark) + kp->Size;
}
#ifdef VOL_UPD
- else
+ else
Make(name);
#endif
}
@@ -80,7 +80,7 @@ void VFILE::ReadBuff(void) {
}
BufMark = Dat.File.Mark();
long n = EndMark - BufMark;
- if (n > IOBUF_SIZE)
+ if (n > IOBUF_SIZE)
n = IOBUF_SIZE;
Lim = Dat.File.Read(Buff, (uint16) n);
Ptr = 0;