[Scummvm-git-logs] scummvm master -> c63bd659eb39eb7bccdc85abdaf960edd3f09b94
aquadran
noreply at scummvm.org
Sat Jul 2 21:00:35 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:
c63bd659eb WINTERMUTE: WME3D: Restore class method
Commit: c63bd659eb39eb7bccdc85abdaf960edd3f09b94
https://github.com/scummvm/scummvm/commit/c63bd659eb39eb7bccdc85abdaf960edd3f09b94
Author: PaweÅ KoÅodziejski (aquadran at gmail.com)
Date: 2022-07-02T23:00:31+02:00
Commit Message:
WINTERMUTE: WME3D: Restore class method
Changed paths:
engines/wintermute/base/base_game.cpp
engines/wintermute/base/base_game.h
diff --git a/engines/wintermute/base/base_game.cpp b/engines/wintermute/base/base_game.cpp
index 9481feb9ec6..2aa5d0022be 100644
--- a/engines/wintermute/base/base_game.cpp
+++ b/engines/wintermute/base/base_game.cpp
@@ -4348,6 +4348,11 @@ bool BaseGame::drawCursor(BaseSprite *cursor) {
return cursor->draw(_mousePos.x, _mousePos.y);
}
+//////////////////////////////////////////////////////////////////////////
+bool BaseGame::renderShadowGeometry() {
+ return STATUS_OK;
+}
+
//////////////////////////////////////////////////////////////////////////
bool BaseGame::storeSaveThumbnail() {
delete _cachedThumbnail;
diff --git a/engines/wintermute/base/base_game.h b/engines/wintermute/base/base_game.h
index cbeb0e5ff9f..442ac4596bd 100644
--- a/engines/wintermute/base/base_game.h
+++ b/engines/wintermute/base/base_game.h
@@ -115,6 +115,7 @@ public:
void setShowFPS(bool enabled) { _debugShowFPS = enabled; }
bool getBilinearFiltering() { return _bilinearFiltering; }
bool getSuspendedRendering() const { return _suspendedRendering; }
+ virtual bool renderShadowGeometry();
TTextEncoding _textEncoding;
bool _textRTL;
More information about the Scummvm-git-logs
mailing list