diff options
author | Paul Gilbert | 2018-11-13 07:58:09 -0800 |
---|---|---|
committer | Paul Gilbert | 2018-12-08 19:05:59 -0800 |
commit | 7d670ff157fbc3df45f70f9e7a5b537b3d13152b (patch) | |
tree | 6839f33b32aac7b5f2b75df250a5532ba2091e01 /engines | |
parent | 7b90a2b60ed09fdba081dd752b4167e0b0e1fd27 (diff) | |
download | scummvm-rg350-7d670ff157fbc3df45f70f9e7a5b537b3d13152b.tar.gz scummvm-rg350-7d670ff157fbc3df45f70f9e7a5b537b3d13152b.tar.bz2 scummvm-rg350-7d670ff157fbc3df45f70f9e7a5b537b3d13152b.zip |
GLK: FROTZ: Fix stack size
Diffstat (limited to 'engines')
-rw-r--r-- | engines/gargoyle/frotz/frotz_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gargoyle/frotz/frotz_types.h b/engines/gargoyle/frotz/frotz_types.h index 6efd0fca5a..6b4fe675f1 100644 --- a/engines/gargoyle/frotz/frotz_types.h +++ b/engines/gargoyle/frotz/frotz_types.h @@ -30,7 +30,7 @@ namespace Gargoyle { namespace Frotz { #define MAX_UNDO_SLOTS 500 -#define STACK_SIZE 20 +#define STACK_SIZE 32768 #define lo(v) (v & 0xff) #define hi(v) (v >> 8) |