From 24e1e77b8d1cf67cd1d73567085c71b7e9ea99ec Mon Sep 17 00:00:00 2001 From: D G Turner Date: Tue, 17 Oct 2023 11:33:43 +0100 Subject: [PATCH] SCUMM: Fix Mismatched Declaration GCC Compiler Warnings --- engines/scumm/gfx_mac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/scumm/gfx_mac.h b/engines/scumm/gfx_mac.h index 5ab6d3dd52c..a2037381276 100644 --- a/engines/scumm/gfx_mac.h +++ b/engines/scumm/gfx_mac.h @@ -25,7 +25,7 @@ class OSystem; namespace Graphics { -class Surface; +struct Surface; class Font; }