aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/dc/display.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/dc/display.cpp')
-rw-r--r--backends/platform/dc/display.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/backends/platform/dc/display.cpp b/backends/platform/dc/display.cpp
index 610fe0b108..1790785b67 100644
--- a/backends/platform/dc/display.cpp
+++ b/backends/platform/dc/display.cpp
@@ -645,23 +645,3 @@ int16 OSystem_Dreamcast::getOverlayWidth()
return OVL_W;
}
-int OSystem_Dreamcast::screenToOverlayX(int x)
-{
- return x - _overlay_x;
-}
-
-int OSystem_Dreamcast::screenToOverlayY(int y)
-{
- return y - _overlay_y;
-}
-
-int OSystem_Dreamcast::overlayToScreenX(int x)
-{
- return x + _overlay_x;
-}
-
-int OSystem_Dreamcast::overlayToScreenY(int y)
-{
- return y + _overlay_y;
-}
-