From a008d1405582e1a25e5dea57b19d03899f44542d Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 18 Nov 2010 16:38:03 +0000 Subject: ENGINES: Do not use MemoryReadStream where (Seekable)ReadStream suffices; avoid using 'using' svn-id: r54323 --- engines/saga/actor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/saga/actor.h') diff --git a/engines/saga/actor.h b/engines/saga/actor.h index 2b6b5c2a3b..6f74eea771 100644 --- a/engines/saga/actor.h +++ b/engines/saga/actor.h @@ -267,7 +267,7 @@ struct Location { screenPoint.x = x / ACTOR_LMULT; screenPoint.y = y / ACTOR_LMULT - z; } - void fromStream(MemoryReadStream &stream) { + void fromStream(Common::ReadStream &stream) { x = stream.readUint16LE(); y = stream.readUint16LE(); z = stream.readUint16LE(); -- cgit v1.2.3