aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2011-06-09 06:03:01 +0200
committerAlyssa Milburn2011-06-15 17:33:37 +0200
commita5bd71858b1933c771f123457ba873e1898a873f (patch)
tree5f23ad5efe0ff6e34596b5b9e5bb0c8d06d1eec9
parent83d7320712bdfe565215e96360d552092503eb80 (diff)
downloadscummvm-rg350-a5bd71858b1933c771f123457ba873e1898a873f.tar.gz
scummvm-rg350-a5bd71858b1933c771f123457ba873e1898a873f.tar.bz2
scummvm-rg350-a5bd71858b1933c771f123457ba873e1898a873f.zip
DREAMWEB: Adjusted mode640x480 slightly
I can't imagine it makes any diffrence, but I guess this function should set these registers just in case...
-rw-r--r--engines/dreamweb/dreamweb.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/dreamweb/dreamweb.cpp b/engines/dreamweb/dreamweb.cpp
index aead233f74..ebdc4a99f7 100644
--- a/engines/dreamweb/dreamweb.cpp
+++ b/engines/dreamweb/dreamweb.cpp
@@ -463,6 +463,8 @@ void set16colpalette(Context &context) {
void mode640x480(Context &context) {
// Video mode 12h: 640x480 pixels, 16 colors, I believe
+ context.al = 0x12 + 128;
+ context.ah = 0;
initGraphics(640, 480, true);
}