diff options
Diffstat (limited to 'engines/sci/include/vm.h')
-rw-r--r-- | engines/sci/include/vm.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sci/include/vm.h b/engines/sci/include/vm.h index 6df7723022..fa404e701c 100644 --- a/engines/sci/include/vm.h +++ b/engines/sci/include/vm.h @@ -37,6 +37,8 @@ #ifndef _SCI_VM_H #define _SCI_VM_H +namespace Sci { + #define VM_STACK_SIZE 0x1000 /* Number of bytes to be allocated for the stack */ @@ -821,4 +823,6 @@ obj_get(struct _state *s, reg_t offset); ** Returns : (object_t *) The object in question, or NULL if there is none */ +} // End of namespace Sci + #endif /* !_SCI_VM_H */ |