ENGINES: Do not use MemoryReadStream where (Seekable)ReadStream suffices; avoid using 'using'
svn-id: r54323
This commit is contained in:
parent
4707b610fc
commit
a008d14055
13 changed files with 25 additions and 27 deletions
|
@ -900,7 +900,7 @@ void Script::popNewRoom(const Common::Array<int> ¶ms) {
|
|||
* @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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue