Skip to content
Permalink
Browse files
Merge pull request #10867 from Pokechu22/mismatched-cp-xf-matrix-inde…
…x-warning

Convert CP/XF matrix indices mismatch panic alert to a warning
  • Loading branch information
AdmiralCurtiss committed Jul 23, 2022
2 parents 3d7b66b + 6a7aa8f commit 9a45a69
Showing 1 changed file with 5 additions and 5 deletions.
@@ -325,11 +325,11 @@ static void CheckCPConfiguration(int vtx_attr_group)
if (g_main_cp_state.matrix_index_a.Hex != xfmem.MatrixIndexA.Hex ||
g_main_cp_state.matrix_index_b.Hex != xfmem.MatrixIndexB.Hex)
{
PanicAlertFmt("Mismatched matrix index configuration between CP and XF stages - "
"index A: {:08x}/{:08x}, index B {:08x}/{:08x}. "
"Please report on the issue tracker.",
g_main_cp_state.matrix_index_a.Hex, xfmem.MatrixIndexA.Hex,
g_main_cp_state.matrix_index_b.Hex, xfmem.MatrixIndexB.Hex);
WARN_LOG_FMT(VIDEO,
"Mismatched matrix index configuration between CP and XF stages - "
"index A: {:08x}/{:08x}, index B {:08x}/{:08x}.",
g_main_cp_state.matrix_index_a.Hex, xfmem.MatrixIndexA.Hex,
g_main_cp_state.matrix_index_b.Hex, xfmem.MatrixIndexB.Hex);
DolphinAnalytics::Instance().ReportGameQuirk(
GameQuirk::MISMATCHED_GPU_MATRIX_INDICES_BETWEEN_CP_AND_XF);
}

0 comments on commit 9a45a69

Please sign in to comment.