From e2d5090f44128148580f06ddf0dc59cf09c56ac7 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 18 Dec 2022 21:13:04 -0600 Subject: [PATCH] [nostalgia/core/userland] Fix namespace of forward declared Palette --- src/nostalgia/core/userland/gfx.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nostalgia/core/userland/gfx.hpp b/src/nostalgia/core/userland/gfx.hpp index 92925f5f..b8c2ef90 100644 --- a/src/nostalgia/core/userland/gfx.hpp +++ b/src/nostalgia/core/userland/gfx.hpp @@ -8,8 +8,8 @@ #include -namespace { -class Palette; +namespace nostalgia::core { +struct Palette; } namespace nostalgia::core::renderer {