Skip to content

Commit

Permalink
Remove isabase from IntelGTRegisters check (#1442)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Wang <[email protected]>
  • Loading branch information
sbobko and WardenGnaw authored Mar 1, 2024
1 parent 680f613 commit f6d7aae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MIDebugEngine/Engine.Impl/EngineUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public static RegisterNameMap Create(string[] registerNames)
{
map._map = s_X86Registers;
}
else if (registerNames.Contains("isabase") && registerNames.Contains("ce")) // Intel GPU register set
else if (registerNames.Contains("ce")) // Intel GPU register set
{
map._map = s_IntelGTRegisters;
}
Expand Down

0 comments on commit f6d7aae

Please sign in to comment.