aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
Diffstat (limited to 'backends')
-rw-r--r--backends/base-backend.cpp3
-rw-r--r--backends/base-backend.h2
2 files changed, 0 insertions, 5 deletions
diff --git a/backends/base-backend.cpp b/backends/base-backend.cpp
index 156871eec5..a1027e098d 100644
--- a/backends/base-backend.cpp
+++ b/backends/base-backend.cpp
@@ -51,6 +51,3 @@ void BaseBackend::fillScreen(uint32 col) {
memset(screen->pixels, col, screen->h * screen->pitch);
unlockScreen();
}
-
-void BaseBackend::resetGraphicsScale() {
-}
diff --git a/backends/base-backend.h b/backends/base-backend.h
index 6b19b7a9cb..bae77d4666 100644
--- a/backends/base-backend.h
+++ b/backends/base-backend.h
@@ -32,8 +32,6 @@ public:
virtual void displayMessageOnOSD(const char *msg);
virtual void fillScreen(uint32 col);
-
- virtual void resetGraphicsScale();
};