aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/advsys/vm.cpp
diff options
context:
space:
mode:
authordreammaster2019-06-09 22:03:26 +0100
committerPaul Gilbert2019-06-09 15:00:46 -0700
commit0074810cb4d9761ef2b3fd4f9350a73faf4da331 (patch)
tree90eb50d21119745c9ed80a4c721d38e75bf76f09 /engines/glk/advsys/vm.cpp
parentb01e711d65e6ef85df90eecde64a857b389a8dbd (diff)
downloadscummvm-rg350-0074810cb4d9761ef2b3fd4f9350a73faf4da331.tar.gz
scummvm-rg350-0074810cb4d9761ef2b3fd4f9350a73faf4da331.tar.bz2
scummvm-rg350-0074810cb4d9761ef2b3fd4f9350a73faf4da331.zip
GLK: ADVSYS: Formatting fixes
Diffstat (limited to 'engines/glk/advsys/vm.cpp')
-rw-r--r--engines/glk/advsys/vm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/advsys/vm.cpp b/engines/glk/advsys/vm.cpp
index 46d2133dd0..754a86a530 100644
--- a/engines/glk/advsys/vm.cpp
+++ b/engines/glk/advsys/vm.cpp
@@ -83,7 +83,7 @@ OpcodeMethod VM::_METHODS[0x34] = {
};
VM::VM(OSystem *syst, const GlkGameDescription &gameDesc) : GlkInterface(syst, gameDesc), Game(),
- _pc(0), _status(IN_PROGRESS) {
+ _pc(0), _status(IN_PROGRESS) {
}
ExecutionResult VM::execute(int offset) {
@@ -94,7 +94,7 @@ ExecutionResult VM::execute(int offset) {
_stack.clear();
// Iterate through the script
- for (_status = IN_PROGRESS; !shouldQuit() && _status == IN_PROGRESS; )
+ for (_status = IN_PROGRESS; !shouldQuit() && _status == IN_PROGRESS;)
executeOpcode();
return _status;