Add video namespace to emu

This commit is contained in:
scawful
2024-04-13 23:39:23 -05:00
parent ca076164ce
commit 2809acd809
5 changed files with 12 additions and 8 deletions

View File

@@ -49,7 +49,7 @@ class DungeonObjectRenderer : public SharedROM {
emu::MemoryImpl memory_;
emu::ClockImpl clock_;
emu::Cpu cpu{memory_, clock_};
emu::Ppu ppu{memory_, clock_};
emu::video::Ppu ppu{memory_, clock_};
gfx::Bitmap bitmap_;
PseudoVram vram_;
};