diff options
author | Vladimir Menshakov | 2010-01-03 15:25:07 +0000 |
---|---|---|
committer | Vladimir Menshakov | 2010-01-03 15:25:07 +0000 |
commit | d7f5f078b0c459eb907f315243d4bafe539aeeb8 (patch) | |
tree | ea68468271f5a63a3d7179ee9c1249ce23671043 | |
parent | 85c8b370cfb77e19aaea4baa9c85ed0dfd175dfa (diff) | |
download | scummvm-rg350-d7f5f078b0c459eb907f315243d4bafe539aeeb8.tar.gz scummvm-rg350-d7f5f078b0c459eb907f315243d4bafe539aeeb8.tar.bz2 scummvm-rg350-d7f5f078b0c459eb907f315243d4bafe539aeeb8.zip |
fixed typo
svn-id: r46927
-rw-r--r-- | engines/teenagent/teenagent.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/teenagent/teenagent.cpp b/engines/teenagent/teenagent.cpp index 06146a9346..1843e76788 100644 --- a/engines/teenagent/teenagent.cpp +++ b/engines/teenagent/teenagent.cpp @@ -385,7 +385,7 @@ bool TeenAgentEngine::showMetropolis() { for(uint y = 0; y < 68; ++y) { for(uint x = 0; x < 320; ++x) { if (*src++ == 1) { - *dst++ = colors[18 * 160 + y / 2 * 160 + x / 2]; + *dst++ = colors[19 * 160 + y / 2 * 160 + x / 2]; } else ++dst; } |