increase default stack size for MrC

This commit is contained in:
Kelvin Sherlock 2014-12-15 08:55:06 -05:00
parent 80be590e76
commit d79f498cfd
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ struct Settings {
// command-line settings.
uint32_t memorySize = 16 * 1024 * 1024;
uint32_t stackSize = 16 * 1024;
uint32_t stackSize = 32 * 1024;
uint32_t machine = 68030;
bool traceCPU = false;