mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Add game quirks for unknown BP/CP/XF commands
This commit is contained in:
parent
ac250f7c20
commit
7fe1292c62
5 changed files with 60 additions and 14 deletions
|
@ -12,8 +12,10 @@
|
|||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/Logging/Log.h"
|
||||
|
||||
#include "Core/ConfigManager.h"
|
||||
#include "Core/CoreTiming.h"
|
||||
#include "Core/DolphinAnalytics.h"
|
||||
#include "Core/FifoPlayer/FifoPlayer.h"
|
||||
#include "Core/FifoPlayer/FifoRecorder.h"
|
||||
#include "Core/HW/Memmap.h"
|
||||
|
@ -704,6 +706,7 @@ static void BPWritten(const BPCmd& bp)
|
|||
break;
|
||||
}
|
||||
|
||||
DolphinAnalytics::Instance().ReportGameQuirk(GameQuirk::USES_UNKNOWN_BP_COMMAND);
|
||||
WARN_LOG_FMT(VIDEO, "Unknown BP opcode: address = {:#010x} value = {:#010x}", bp.address,
|
||||
bp.newvalue);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue