Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove an unused parameter from UpdateDebugger_MapLoaded. #200

Merged
merged 1 commit into from Mar 24, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/Core/Core/Boot/Boot.cpp
Expand Up @@ -61,7 +61,7 @@ void CBoot::Load_FST(bool _bIsWii)
Memory::Write_U32(maxFstSize, 0x0000003c);
}

void CBoot::UpdateDebugger_MapLoaded(const char *_gameID)
void CBoot::UpdateDebugger_MapLoaded()
{
Host_NotifyMapLoaded();
}
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Core/Boot/Boot.h
Expand Up @@ -43,7 +43,7 @@ class CBoot
private:
static void RunFunction(u32 _iAddr);

static void UpdateDebugger_MapLoaded(const char* _gameID = nullptr);
static void UpdateDebugger_MapLoaded();

static bool LoadMapFromFilename();
static bool Boot_ELF(const std::string& filename);
Expand Down