Merge pull request #200 from lioncash/unused-param

Remove an unused parameter from UpdateDebugger_MapLoaded.
This commit is contained in:
Matthew Parlane 2014-03-25 09:20:23 +13:00
commit 6351f28ab4
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ void CBoot::Load_FST(bool _bIsWii)
Memory::Write_U32(maxFstSize, 0x0000003c); Memory::Write_U32(maxFstSize, 0x0000003c);
} }
void CBoot::UpdateDebugger_MapLoaded(const char *_gameID) void CBoot::UpdateDebugger_MapLoaded()
{ {
Host_NotifyMapLoaded(); Host_NotifyMapLoaded();
} }

View File

@ -43,7 +43,7 @@ public:
private: private:
static void RunFunction(u32 _iAddr); static void RunFunction(u32 _iAddr);
static void UpdateDebugger_MapLoaded(const char* _gameID = nullptr); static void UpdateDebugger_MapLoaded();
static bool LoadMapFromFilename(); static bool LoadMapFromFilename();
static bool Boot_ELF(const std::string& filename); static bool Boot_ELF(const std::string& filename);