diff options
author | Strangerke | 2015-02-04 22:22:50 +0100 |
---|---|---|
committer | Strangerke | 2015-02-04 22:22:50 +0100 |
commit | 452c5e59c5e7c61bbf4135ac7430798fd3a97031 (patch) | |
tree | dd9da4f13bca49688c4acbf6df8ddf48e4ef29e2 /engines/access/martian | |
parent | bb640a85a5d0f0634d78a59dc94573844113f40c (diff) | |
download | scummvm-rg350-452c5e59c5e7c61bbf4135ac7430798fd3a97031.tar.gz scummvm-rg350-452c5e59c5e7c61bbf4135ac7430798fd3a97031.tar.bz2 scummvm-rg350-452c5e59c5e7c61bbf4135ac7430798fd3a97031.zip |
ACCESS: Tex2 - Start implementing takePicture()
Diffstat (limited to 'engines/access/martian')
-rw-r--r-- | engines/access/martian/martian_resources.cpp | 11 | ||||
-rw-r--r-- | engines/access/martian/martian_resources.h | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/engines/access/martian/martian_resources.cpp b/engines/access/martian/martian_resources.cpp index 9196395756..7ffb256e44 100644 --- a/engines/access/martian/martian_resources.cpp +++ b/engines/access/martian/martian_resources.cpp @@ -819,5 +819,16 @@ const byte _byte1EEB5[] = { 1 }; +const int PICTURERANGE[][2] = { +// { min X, max X}, {min Y, max Y} + { 20, 30 }, { 82, 87 }, + { 20, 30 }, { 105, 110 }, + { 0, 8 }, { 92, 100 }, + { 42, 46 }, { 92, 100 }, + { 9, 41 }, { 88, 104 }, + { 9, 41 }, { 117, 133 }, + { -1, -1 } +}; + } // End of namespace Martian } // End of namespace Access diff --git a/engines/access/martian/martian_resources.h b/engines/access/martian/martian_resources.h index f416cff16c..7503ae4e0f 100644 --- a/engines/access/martian/martian_resources.h +++ b/engines/access/martian/martian_resources.h @@ -67,6 +67,7 @@ extern const byte DEATH_SCREENS[]; extern const char *const DEATHMESSAGE[]; extern const byte _byte1EEB5[]; +extern const int PICTURERANGE[][2]; } // End of namespace Martian } // End of namespace Access |