From a8b3b67d297407c1fa2d8a89893b6ee72caf488b Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Sat, 27 May 2017 14:33:24 +0300 Subject: SCI32: Update some old comments related to virtual files --- engines/sci/engine/kfile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/sci/engine/kfile.cpp b/engines/sci/engine/kfile.cpp index fd6fab6506..6c96607664 100644 --- a/engines/sci/engine/kfile.cpp +++ b/engines/sci/engine/kfile.cpp @@ -325,7 +325,7 @@ reg_t kFileIOOpen(EngineState *s, int argc, reg_t *argv) { return SIGNAL_REG; } else if (mode == _K_FILE_MODE_OPEN_OR_FAIL) { // Create a virtual file containing the save game description - // and slot number, as the game scripts expect. + // and current score progress, as the game scripts expect. int saveNo; sscanf(name.c_str(), "%d.SG", &saveNo); saveNo += kSaveIdShift; @@ -365,7 +365,7 @@ reg_t kFileIOOpen(EngineState *s, int argc, reg_t *argv) { return SIGNAL_REG; } else if (mode == _K_FILE_MODE_OPEN_OR_FAIL) { // Create a virtual file containing the save game description - // and slot number, as the game scripts expect. + // and avatar ID, as the game scripts expect. int saveNo; sscanf(name.c_str(), "%d.DTA", &saveNo); saveNo += kSaveIdShift; -- cgit v1.2.3