Skip to content

Commit

Permalink
Fix build issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpd002 committed Jul 31, 2023
1 parent 6c44e15 commit d6e7769
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/iop/Iop_SubSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ void CSubSystem::LoadState(Framework::CZipArchiveReader& archive)
m_sio2.LoadState(archive);
#endif
m_bios->LoadState(archive);

//Load timing state
{
CRegisterStateFile registerFile(*archive.BeginReadFile(STATE_TIMING));
Expand Down
2 changes: 1 addition & 1 deletion Source/iop/namco_arcade/Iop_NamcoAcRam.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace Iop

private:
//TODO: Make this configurable per game
static const uint32_t g_extRamSize = 0x6000000;
static constexpr uint32 g_extRamSize = 0x6000000;
uint8 m_extRam[g_extRamSize];
uint8* m_iopRam = nullptr;
};
Expand Down

0 comments on commit d6e7769

Please sign in to comment.