[Scummvm-git-logs] scummvm master -> bdf012d016c23998c7661554bc7aa1f6fe4bfa00
bluegr
bluegr at gmail.com
Tue Mar 16 14:01:41 UTC 2021
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:
bdf012d016 GPH: Don't call DownscaleSdlGraphicsManager anymore
Commit: bdf012d016c23998c7661554bc7aa1f6fe4bfa00
https://github.com/scummvm/scummvm/commit/bdf012d016c23998c7661554bc7aa1f6fe4bfa00
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2021-03-16T16:01:38+02:00
Commit Message:
GPH: Don't call DownscaleSdlGraphicsManager anymore
They are gone.
Changed paths:
backends/graphics/gph/gph-graphics.cpp
diff --git a/backends/graphics/gph/gph-graphics.cpp b/backends/graphics/gph/gph-graphics.cpp
index 5686389469..464d08aab1 100644
--- a/backends/graphics/gph/gph-graphics.cpp
+++ b/backends/graphics/gph/gph-graphics.cpp
@@ -31,7 +31,7 @@ GPHGraphicsManager::GPHGraphicsManager(SdlEventSource *sdlEventSource, SdlWindow
}
void GPHGraphicsManager::initSize(uint w, uint h, const Graphics::PixelFormat *format) {
- DownscaleSdlGraphicsManager::initSize(w, h, format);
+ SurfaceSdlGraphicsManager::initSize(w, h, format);
_videoMode.overlayWidth = 320;
_videoMode.overlayHeight = 240;
@@ -57,7 +57,7 @@ void GPHGraphicsManager::setupHardwareSize() {
}
bool GPHGraphicsManager::loadGFXMode() {
- bool success = DownscaleSdlGraphicsManager::loadGFXMode();
+ bool success = SurfaceSdlGraphicsManager::loadGFXMode();
// The old GP2X hacked SDL needs this after any call to SDL_SetVideoMode
// and it does not hurt other devices.
More information about the Scummvm-git-logs
mailing list