diff options
author | Stuart George | 2007-11-28 01:11:09 +0000 |
---|---|---|
committer | Stuart George | 2007-11-28 01:11:09 +0000 |
commit | 44ac9cb7ae66657fc1cea26811dd247c6e53a4f7 (patch) | |
tree | b32a2bb4b47b150ce4bbac0def8359c1032bd2ca /engines/agi | |
parent | 1d458bae991ac347f7390fffda8b17dc72830f21 (diff) | |
download | scummvm-rg350-44ac9cb7ae66657fc1cea26811dd247c6e53a4f7.tar.gz scummvm-rg350-44ac9cb7ae66657fc1cea26811dd247c6e53a4f7.tar.bz2 scummvm-rg350-44ac9cb7ae66657fc1cea26811dd247c6e53a4f7.zip |
Fix regression from r28850 that rewrote all pattern data. Fixes agi v3 circle plot patterns
svn-id: r29653
Diffstat (limited to 'engines/agi')
-rw-r--r-- | engines/agi/picture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agi/picture.cpp b/engines/agi/picture.cpp index 12550aa00d..09dbefa7a4 100644 --- a/engines/agi/picture.cpp +++ b/engines/agi/picture.cpp @@ -343,7 +343,7 @@ void PictureMgr::plotPattern(int x, int y) { static const uint16 circle_data[] = {0x8000, - 0xE000, 0xE000, 0xE000, + 0x0000, 0xE000, 0x0000, 0x7000, 0xF800, 0x0F800, 0x0F800, 0x7000, 0x3800, 0x7C00, 0x0FE00, 0x0FE00, 0x0FE00, 0x7C00, 0x3800, 0x1C00, 0x7F00, 0x0FF80, 0x0FF80, 0x0FF80, 0x0FF80, 0x0FF80, 0x7F00, 0x1C00, |