[Scummvm-git-logs] scummvm master -> 7f4a9f8127c8e56706dea858f75d4bf25c461586
lephilousophe
noreply at scummvm.org
Tue Jul 19 06:42:46 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:
7f4a9f8127 MTROPOLIS: Fix uint32 discrepancy
Commit: 7f4a9f8127c8e56706dea858f75d4bf25c461586
https://github.com/scummvm/scummvm/commit/7f4a9f8127c8e56706dea858f75d4bf25c461586
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2022-07-19T08:41:57+02:00
Commit Message:
MTROPOLIS: Fix uint32 discrepancy
Changed paths:
engines/mtropolis/hacks.cpp
diff --git a/engines/mtropolis/hacks.cpp b/engines/mtropolis/hacks.cpp
index a0685300c25..5a2b9cf85d9 100644
--- a/engines/mtropolis/hacks.cpp
+++ b/engines/mtropolis/hacks.cpp
@@ -150,7 +150,7 @@ class ObsidianRSGLogoAnamorphicFilter : public MovieResizeFilter {
public:
ObsidianRSGLogoAnamorphicFilter();
- Common::SharedPtr<Graphics::Surface> scaleFrame(const Graphics::Surface &surface, uint timestamp) const override;
+ Common::SharedPtr<Graphics::Surface> scaleFrame(const Graphics::Surface &surface, uint32 timestamp) const override;
private:
template<class TPixel>
@@ -295,7 +295,7 @@ void ObsidianRSGLogoAnamorphicFilter::halveHeightTyped(const Graphics::Surface &
}
}
-Common::SharedPtr<Graphics::Surface> ObsidianRSGLogoAnamorphicFilter::scaleFrame(const Graphics::Surface &surface, uint timestamp) const {
+Common::SharedPtr<Graphics::Surface> ObsidianRSGLogoAnamorphicFilter::scaleFrame(const Graphics::Surface &surface, uint32 timestamp) const {
Common::SharedPtr<Graphics::Surface> result(new Graphics::Surface());
result->create(_xCoordinates.size() / 2, _yCoordinates.size() / 2, surface.format);
More information about the Scummvm-git-logs
mailing list