Rename SharedROM to SharedRom

This commit is contained in:
scawful
2024-04-14 14:51:53 -05:00
parent 7e46cf1c64
commit 5953e58bd4
21 changed files with 26 additions and 24 deletions

View File

@@ -22,7 +22,7 @@ namespace emu {
* @class Emulator
* @brief A class for emulating and debugging SNES ROMs.
*/
class Emulator : public SharedROM {
class Emulator : public SharedRom {
public:
void Run();

View File

@@ -265,7 +265,7 @@ struct BackgroundLayer {
const int kPpuClockSpeed = 5369318; // 5.369318 MHz
class Ppu : public Observer, public SharedROM {
class Ppu : public Observer, public SharedRom {
public:
// Initializes the PPU with the necessary resources and dependencies
Ppu(memory::Memory& memory, Clock& clock) : memory_(memory), clock_(clock) {}