aboutsummaryrefslogtreecommitdiff
path: root/kyra/staticres.cpp
diff options
context:
space:
mode:
authorGregory Montoir2005-10-03 20:21:18 +0000
committerGregory Montoir2005-10-03 20:21:18 +0000
commit3bcb098fd31a0f68171fd4053f2600bb84814a5a (patch)
treef62249c1ee390eccf590de2b15ef22db509a5838 /kyra/staticres.cpp
parentefa1c130640f4588ccdbba060448d53b51b26a86 (diff)
downloadscummvm-rg350-3bcb098fd31a0f68171fd4053f2600bb84814a5a.tar.gz
scummvm-rg350-3bcb098fd31a0f68171fd4053f2600bb84814a5a.tar.bz2
scummvm-rg350-3bcb098fd31a0f68171fd4053f2600bb84814a5a.zip
committed patch #1312156 'Various sprite-related things'. Thanks Oystein Eftevaag/vinterstum
svn-id: r18930
Diffstat (limited to 'kyra/staticres.cpp')
-rw-r--r--kyra/staticres.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/kyra/staticres.cpp b/kyra/staticres.cpp
index d11323a025..c0cbd5b42e 100644
--- a/kyra/staticres.cpp
+++ b/kyra/staticres.cpp
@@ -467,4 +467,15 @@ const char *KyraEngine::_xmidiFiles[] = {
const int KyraEngine::_xmidiFilesCount = ARRAYSIZE(_xmidiFiles);
+const Cursor KyraEngine::_cursors[] = {
+ { 0, 0, 8, 10 }, // 0: Regular cursor
+ { 80, 18, 15, 10 }, // 1: Up arrow
+ { 95, 18, 15, 10 }, // 2: Right arrow
+ { 110, 18, 15, 10 }, // 3: Down arrow
+ { 125, 18, 15, 10 }, // 4: Left arrow
+ { 140, 18, 15, 10 } // 5: Stopsign
+};
+
+const int KyraEngine::_cursorsCount = ARRAYSIZE(_cursors);
+
} // End of namespace Kyra