[Scummvm-git-logs] scummvm master -> 063bf806287d402b71acfc56a49f33246d425b47

ccawley2011 noreply at scummvm.org
Thu Feb 10 14:46:02 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
063bf80628 PETKA: Fix compilation on RISC OS


Commit: 063bf806287d402b71acfc56a49f33246d425b47
    https://github.com/scummvm/scummvm/commit/063bf806287d402b71acfc56a49f33246d425b47
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2022-02-10T14:45:46Z

Commit Message:
PETKA: Fix compilation on RISC OS

Changed paths:
    engines/petka/petka.cpp


diff --git a/engines/petka/petka.cpp b/engines/petka/petka.cpp
index 9d5f1911462..d39dd35c8e0 100644
--- a/engines/petka/petka.cpp
+++ b/engines/petka/petka.cpp
@@ -141,7 +141,8 @@ Common::SeekableReadStream *PetkaEngine::openIniFile(const Common::String &name)
 	class IniReadStream : public Common::SeekableSubReadStream
 	{
 	public:
-		using SeekableSubReadStream::SeekableSubReadStream;
+		IniReadStream(SeekableReadStream *parentStream, uint32 begin, uint32 end, DisposeAfterUse::Flag disposeParentStream = DisposeAfterUse::NO)
+			: SeekableSubReadStream(parentStream, begin, end, disposeParentStream) {}
 
 		char *readLine(char *buf, size_t bufSize, bool handleCR = true) override
 		{




More information about the Scummvm-git-logs mailing list