Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Enhance an error message.
Fix issue 5893.
  • Loading branch information
jordan-woyak committed Jan 13, 2013
1 parent 6b8dc68 commit 644c8f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Core/Core/Src/ActionReplay.cpp
Expand Up @@ -679,7 +679,8 @@ bool Subtype_MasterCodeAndWriteToCCXXXXXX(const ARAddr addr, const u32 data)
// u8 mcode_type = (data & 0xFF0000) >> 16;
// u8 mcode_count = (data & 0xFF00) >> 8;
// u8 mcode_number = data & 0xFF;
PanicAlertT("Action Replay Error: Master Code and Write To CCXXXXXX not implemented (%s)", current_code->name.c_str());
PanicAlertT("Action Replay Error: Master Code and Write To CCXXXXXX not implemented (%s)\n"
"Master codes are not needed. Do not use master codes.", current_code->name.c_str());
return false;
}

Expand Down

0 comments on commit 644c8f2

Please sign in to comment.