ENGINES: Do not use MemoryReadStream where (Seekable)ReadStream suffices; avoid using 'using'

svn-id: r54323
This commit is contained in:
Max Horn 2010-11-18 16:38:03 +00:00
parent 4707b610fc
commit a008d14055
13 changed files with 25 additions and 27 deletions

View file

@ -900,7 +900,7 @@ void Script::popNewRoom(const Common::Array<int> &params) {
* @brief Evaluates mathematical expressions
* @param reader Stream reader set to the beginning of the expression
*/
int Script::handleMathExpression(Common::MemoryReadStream *reader) const {
int Script::handleMathExpression(Common::ReadStream *reader) const {
Common::Stack<int> stk;
mathExpressionObject obj;
GPL2Operator oper;