aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backends/platform/wince/wince-sdl.cpp5
-rw-r--r--backends/platform/wince/wince-sdl.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/backends/platform/wince/wince-sdl.cpp b/backends/platform/wince/wince-sdl.cpp
index a096be0a4a..4a61b3eacb 100644
--- a/backends/platform/wince/wince-sdl.cpp
+++ b/backends/platform/wince/wince-sdl.cpp
@@ -1590,6 +1590,11 @@ void OSystem_WINCE3::internUpdateScreen() {
_forceFull = false;
}
+bool OSystem_WINCE3::grabRawScreen(Graphics::Surface *surf) {
+ undrawMouse();
+ return OSystem_SDL::grabRawScreen(surf);
+}
+
bool OSystem_WINCE3::saveScreenshot(const char *filename) {
assert(_hwscreen != NULL);
diff --git a/backends/platform/wince/wince-sdl.h b/backends/platform/wince/wince-sdl.h
index 056996f0de..41b71bba02 100644
--- a/backends/platform/wince/wince-sdl.h
+++ b/backends/platform/wince/wince-sdl.h
@@ -97,6 +97,7 @@ public:
void copyRectToOverlay(const OverlayColor *buf, int pitch, int x, int y, int w, int h);
void showOverlay();
void hideOverlay();
+ bool grabRawScreen(Graphics::Surface *surf);
// GUI and action stuff
void swap_panel_visibility();