From 68728089381ba7bd189eb43c8033b2109200b78b Mon Sep 17 00:00:00 2001 From: Riyyi Date: Wed, 17 Aug 2022 23:13:28 +0200 Subject: [PATCH] Emu: Fix include filenames --- src/apu.h | 2 +- src/cpu.h | 2 +- src/ppu.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apu.h b/src/apu.h index aba98d2..20ab650 100644 --- a/src/apu.h +++ b/src/apu.h @@ -7,7 +7,7 @@ #pragma once -#include "processingunit.h" +#include "processing-unit.h" class APU : public ProcessingUnit { public: diff --git a/src/cpu.h b/src/cpu.h index 1f94e0c..5241a9a 100644 --- a/src/cpu.h +++ b/src/cpu.h @@ -7,7 +7,7 @@ #pragma once -#include "processingunit.h" +#include "processing-unit.h" class CPU final : public ProcessingUnit { public: diff --git a/src/ppu.h b/src/ppu.h index 9d7a0d2..b236e8e 100644 --- a/src/ppu.h +++ b/src/ppu.h @@ -7,7 +7,7 @@ #pragma once -#include "processingunit.h" +#include "processing-unit.h" class PPU final : public ProcessingUnit { public: