From 06b76ce435d5b2b802dcaf06be2c6722662061e8 Mon Sep 17 00:00:00 2001 From: PalindromicBreadLoaf Date: Tue, 22 Jul 2025 11:51:32 -0400 Subject: [PATCH] Fix building on Windows --- src/system.cpp | 3 +-- src/system.h | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/system.cpp b/src/system.cpp index 940addc..28e048b 100644 --- a/src/system.cpp +++ b/src/system.cpp @@ -2,12 +2,11 @@ // Created by Palindromic Bread Loaf on 7/21/25. // -#include "system.h" - #include #include #include "bus.h" +#include "system.h" // SNES System Implementation System::System() : running(false) { diff --git a/src/system.h b/src/system.h index 06378ef..9abaf3e 100644 --- a/src/system.h +++ b/src/system.h @@ -6,6 +6,7 @@ #define SYSTEM_H #include +#include #include "cpu.h" #include "ppu.h" #include "apu.h" @@ -14,7 +15,6 @@ // Main SNES System class class System { -private: std::unique_ptr cpu; std::unique_ptr ppu; std::unique_ptr apu;