diff options
author | Max Horn | 2003-04-27 17:44:40 +0000 |
---|---|---|
committer | Max Horn | 2003-04-27 17:44:40 +0000 |
commit | dfd99bbb13c6f4859d14f26752e6a2c063603e53 (patch) | |
tree | d4612d0454982f8ebbbe81782d189f9503d04e16 /scumm | |
parent | 648add8aa88566fa1d8a2d616c7177f562aef8d8 (diff) | |
download | scummvm-rg350-dfd99bbb13c6f4859d14f26752e6a2c063603e53.tar.gz scummvm-rg350-dfd99bbb13c6f4859d14f26752e6a2c063603e53.tar.bz2 scummvm-rg350-dfd99bbb13c6f4859d14f26752e6a2c063603e53.zip |
raied _maxHeapThreshold per suggestion by Marcus Comstedt (this means we use up to 450 K memory more, but it avoid frequent reloading of stuff)
svn-id: r7161
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scummvm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 64382a64ca..03237d2e3c 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -1792,7 +1792,7 @@ void Scumm::mainRun() { void Scumm::launch() { gdi._vm = this; - _maxHeapThreshold = 450000; + _maxHeapThreshold = 900000; _minHeapThreshold = 400000; _verbRedraw = false; |