diff options
author | Paul Gilbert | 2013-12-28 20:40:53 +1100 |
---|---|---|
committer | Paul Gilbert | 2013-12-28 20:40:53 +1100 |
commit | aa42e7d2bdd9f368ca9941309a19027afe54a30f (patch) | |
tree | 9e45ef105bb17e1e3271bdc7d8dd0e2ac1721a6c | |
parent | 8fa75375d417ee8b52b6b0ca71d58771c5093e16 (diff) | |
download | scummvm-rg350-aa42e7d2bdd9f368ca9941309a19027afe54a30f.tar.gz scummvm-rg350-aa42e7d2bdd9f368ca9941309a19027afe54a30f.tar.bz2 scummvm-rg350-aa42e7d2bdd9f368ca9941309a19027afe54a30f.zip |
VOYEUR: Fix data needed for drawDot
-rw-r--r-- | engines/voyeur/staticres.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/voyeur/staticres.cpp b/engines/voyeur/staticres.cpp index 1ce8a74141..d0f590eab3 100644 --- a/engines/voyeur/staticres.cpp +++ b/engines/voyeur/staticres.cpp @@ -117,7 +117,7 @@ const char *const END_OF_MESSAGE = "*** End of Message ***"; const char *const EVENT_TYPE_STRINGS[4] = { "Video", "Audio" "Evidence", "Computer" }; int DOT_LINE_START[9] = { - 0E880, 0xE9C0, 0xEB00, 0xEC40, 0xED80, 0xEEC0, 0xF000, 0xF140, 0xF280 + 0xE880, 0xE9C0, 0xEB00, 0xEC40, 0xED80, 0xEEC0, 0xF000, 0xF140, 0xF280 }; int DOT_LINE_OFFSET[9] = { 144, 143, 142, 141, 141, 141, 142, 143, 144 |