mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
SDL: Add masks to the SDL backend to support the OpenPandora backend.
svn-id: r52599
This commit is contained in:
parent
e81dad8e61
commit
2e1b4278e2
@ -539,7 +539,7 @@ bool OSystem_SDL::loadGFXMode() {
|
|||||||
assert(_inited);
|
assert(_inited);
|
||||||
_forceFull = true;
|
_forceFull = true;
|
||||||
|
|
||||||
#if !defined(__MAEMO__) && !defined(GP2XWIZ) && !defined(LINUXMOTO) && !defined(DINGUX)
|
#if !defined(__MAEMO__) && !defined(GP2XWIZ) && !defined(LINUXMOTO) && !defined(DINGUX) && !defined(OPENPANDORA)
|
||||||
_videoMode.overlayWidth = _videoMode.screenWidth * _videoMode.scaleFactor;
|
_videoMode.overlayWidth = _videoMode.screenWidth * _videoMode.scaleFactor;
|
||||||
_videoMode.overlayHeight = _videoMode.screenHeight * _videoMode.scaleFactor;
|
_videoMode.overlayHeight = _videoMode.screenHeight * _videoMode.scaleFactor;
|
||||||
|
|
||||||
@ -785,7 +785,7 @@ void OSystem_SDL::internUpdateScreen() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// If the shake position changed, fill the dirty area with blackness
|
// If the shake position changed, fill the dirty area with blackness
|
||||||
if (_currentShakePos != _newShakePos ||
|
if (_currentShakePos != _newShakePos ||
|
||||||
(_mouseNeedsRedraw && _mouseBackup.y <= _currentShakePos)) {
|
(_mouseNeedsRedraw && _mouseBackup.y <= _currentShakePos)) {
|
||||||
SDL_Rect blackrect = {0, 0, _videoMode.screenWidth * _videoMode.scaleFactor, _newShakePos * _videoMode.scaleFactor};
|
SDL_Rect blackrect = {0, 0, _videoMode.screenWidth * _videoMode.scaleFactor, _newShakePos * _videoMode.scaleFactor};
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
|
|
||||||
// Several SDL based ports use a custom main, and hence do not want to compile
|
// Several SDL based ports use a custom main, and hence do not want to compile
|
||||||
// of this file. The following "#if" ensures that.
|
// of this file. The following "#if" ensures that.
|
||||||
#if !defined(__MAEMO__) && !defined(_WIN32_WCE) && !defined(GP2XWIZ)&& !defined(LINUXMOTO) && !defined(__SYMBIAN32__) && !defined(DINGUX)
|
#if !defined(__MAEMO__) && !defined(_WIN32_WCE) && !defined(CAANOO) && !defined(GP2XWIZ) && !defined(LINUXMOTO) && !defined(OPENPANDORA) && !defined(__SYMBIAN32__) && !defined(DINGUX)
|
||||||
|
|
||||||
|
|
||||||
#include "backends/platform/sdl/sdl.h"
|
#include "backends/platform/sdl/sdl.h"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user