From: <c99...@us...> - 2006-05-27 02:33:22
|
Revision: 329 Author: c99koder Date: 2006-05-26 19:33:16 -0700 (Fri, 26 May 2006) ViewCVS: http://svn.sourceforge.net/cadcdev/?rev=329&view=rev Log Message: ----------- Tiki: correct return type on ConsoleText::getColor() Modified Paths: -------------- tiki/include/Tiki/drawables/console.h Modified: tiki/include/Tiki/drawables/console.h =================================================================== --- tiki/include/Tiki/drawables/console.h 2006-05-25 12:34:19 UTC (rev 328) +++ tiki/include/Tiki/drawables/console.h 2006-05-27 02:33:16 UTC (rev 329) @@ -77,7 +77,7 @@ return m_charData[(y*m_cols) + x]; } - char getColor(int x, int y) { + short getColor(int x, int y) { assert(x<m_cols && y<m_rows); return m_colorData[(y*m_cols) + x]; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |