diff options
author | Bertrand Augereau | 2011-11-18 17:47:55 +0100 |
---|---|---|
committer | Bertrand Augereau | 2011-11-18 17:47:55 +0100 |
commit | 42c9e24e691ee35c424d3f02c3208a45ef20235c (patch) | |
tree | 18cf29895030684379dc90f3127d5edbdb191ad5 /engines | |
parent | a09a39794cb4b9d0ca59b588a09e4dbcd1d6a5ad (diff) | |
download | scummvm-rg350-42c9e24e691ee35c424d3f02c3208a45ef20235c.tar.gz scummvm-rg350-42c9e24e691ee35c424d3f02c3208a45ef20235c.tar.bz2 scummvm-rg350-42c9e24e691ee35c424d3f02c3208a45ef20235c.zip |
DREAMWEB: Remove now unnecessary push/pop sequence in 'scrollmonitor'
Diffstat (limited to 'engines')
-rw-r--r-- | engines/dreamweb/monitor.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/engines/dreamweb/monitor.cpp b/engines/dreamweb/monitor.cpp index 41df8c490b..7ba625b0de 100644 --- a/engines/dreamweb/monitor.cpp +++ b/engines/dreamweb/monitor.cpp @@ -188,17 +188,11 @@ void DreamGenContext::hangoncurs() { } void DreamGenContext::scrollmonitor() { - push(bx); // The 3 push/pops are all needed for now - push(di); - push(si); printlogo(); printundermon(); workToScreenCPP(); al = 25; playchannel1(); - si = pop(); - di = pop(); - bx = pop(); } void DreamGenContext::showcurrentfile() { |