Browse Source

Emu: Fix include filenames

master
Riyyi 2 years ago
parent
commit
6872808938
  1. 2
      src/apu.h
  2. 2
      src/cpu.h
  3. 2
      src/ppu.h

2
src/apu.h

@ -7,7 +7,7 @@
#pragma once #pragma once
#include "processingunit.h" #include "processing-unit.h"
class APU : public ProcessingUnit { class APU : public ProcessingUnit {
public: public:

2
src/cpu.h

@ -7,7 +7,7 @@
#pragma once #pragma once
#include "processingunit.h" #include "processing-unit.h"
class CPU final : public ProcessingUnit { class CPU final : public ProcessingUnit {
public: public:

2
src/ppu.h

@ -7,7 +7,7 @@
#pragma once #pragma once
#include "processingunit.h" #include "processing-unit.h"
class PPU final : public ProcessingUnit { class PPU final : public ProcessingUnit {
public: public:

Loading…
Cancel
Save