Fix building on Windows
This commit is contained in:
@@ -2,12 +2,11 @@
|
||||
// Created by Palindromic Bread Loaf on 7/21/25.
|
||||
//
|
||||
|
||||
#include "system.h"
|
||||
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
|
||||
#include "bus.h"
|
||||
#include "system.h"
|
||||
|
||||
// SNES System Implementation
|
||||
System::System() : running(false) {
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
#define SYSTEM_H
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include "cpu.h"
|
||||
#include "ppu.h"
|
||||
#include "apu.h"
|
||||
@@ -14,7 +15,6 @@
|
||||
|
||||
// Main SNES System class
|
||||
class System {
|
||||
private:
|
||||
std::unique_ptr<CPU> cpu;
|
||||
std::unique_ptr<PPU> ppu;
|
||||
std::unique_ptr<APU> apu;
|
||||
|
||||
Reference in New Issue
Block a user