From 2d17b39772eb8feeb2401e7a1190b7dab8db9555 Mon Sep 17 00:00:00 2001 From: Sergio Martin Date: Mon, 29 Jan 2024 16:54:27 +0100 Subject: [PATCH] Fixing relative includes --- source/quickNES/nesInstance.hpp | 6 +++--- source/quickerNES/nesInstance.hpp | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/source/quickNES/nesInstance.hpp b/source/quickNES/nesInstance.hpp index de0ca6e..6a26d49 100644 --- a/source/quickNES/nesInstance.hpp +++ b/source/quickNES/nesInstance.hpp @@ -1,8 +1,8 @@ #pragma once -#include -#include -#include +#include "core/nes_emu/Nes_Emu.h" +#include "core/nes_emu/Nes_State.h" +#include "../nesInstanceBase.hpp" #define _DUMMY_SIZE 65536 diff --git a/source/quickerNES/nesInstance.hpp b/source/quickerNES/nesInstance.hpp index 36a0efa..bfc72d4 100644 --- a/source/quickerNES/nesInstance.hpp +++ b/source/quickerNES/nesInstance.hpp @@ -1,7 +1,7 @@ #pragma once -#include -#include +#include "core/emu.hpp" +#include "../nesInstanceBase.hpp" typedef quickerNES::Emu emulator_t;