From 774066714ac885ef881b67118405d82d55615c0f Mon Sep 17 00:00:00 2001 From: elasota Date: Sat, 18 Feb 2023 19:11:03 -0500 Subject: [PATCH] BACKENDS: N64: Fix wrong error message --- backends/platform/n64/osys_n64_base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/platform/n64/osys_n64_base.cpp b/backends/platform/n64/osys_n64_base.cpp index f7906f4bb31..8cbf7cae9e3 100644 --- a/backends/platform/n64/osys_n64_base.cpp +++ b/backends/platform/n64/osys_n64_base.cpp @@ -770,7 +770,7 @@ void OSystem_N64::setMouseCursor(const void *buf, uint w, uint h, int hotspotX, if (!w || !h) return; if (mask) - warning("OSystem_DS::setMouseCursor: Masks are not supported"); + warning("OSystem_N64::setMouseCursor: Masks are not supported"); _mouseHotspotX = hotspotX; _mouseHotspotY = hotspotY;