Fixing broken error check and adding some manual breakpoints.

This commit is contained in:
Ben Vanik
2013-10-23 23:48:18 -07:00
parent 655a486db3
commit 3b7fcced0e
4 changed files with 18 additions and 2 deletions

View File

@@ -27,6 +27,7 @@ namespace xboxkrnl {
void xeKeBugCheckEx(uint32_t code, uint32_t param1, uint32_t param2, uint32_t param3, uint32_t param4) {
XELOGD("*** STOP: 0x%.8X (0x%.8X, 0x%.8X, 0x%.8X, 0x%.8X)", code, param1, param2, param3, param4);
DebugBreak();
XEASSERTALWAYS();
}