diff options
author | Nipun Garg | 2019-06-01 16:46:02 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:16:42 +0200 |
commit | db612244405d3ff46958d2e5d254401861d6e3e7 (patch) | |
tree | 83399c5469f37a4a7c4ebef2e98500e5cc912f80 | |
parent | 57fc376b48f5e567ddbadd3e4a6621f9c15e8c72 (diff) | |
download | scummvm-rg350-db612244405d3ff46958d2e5d254401861d6e3e7.tar.gz scummvm-rg350-db612244405d3ff46958d2e5d254401861d6e3e7.tar.bz2 scummvm-rg350-db612244405d3ff46958d2e5d254401861d6e3e7.zip |
HDB: Correct the PixelFormat to 565
-rw-r--r-- | engines/hdb/hdb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp index 86694ab90b..772307c530 100644 --- a/engines/hdb/hdb.cpp +++ b/engines/hdb/hdb.cpp @@ -106,7 +106,7 @@ Common::Error HDBGame::run() { } // Initializes Graphics - Graphics::PixelFormat format(4, 8, 8, 8, 8, 24, 16, 8, 0); + Graphics::PixelFormat format(2, 5, 6, 5, 0, 11, 5, 0, 0); initGraphics(640, 480, &format); _console = new Console(); |