From 2db429ac0e6e35116bc3f0e083f2771e52a43f92 Mon Sep 17 00:00:00 2001 From: PatrickvL Date: Tue, 18 Jul 2017 16:15:56 +0200 Subject: [PATCH] KeBugCheckEx : Correct spelling --- src/CxbxKrnl/EmuKrnlKe.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/CxbxKrnl/EmuKrnlKe.cpp b/src/CxbxKrnl/EmuKrnlKe.cpp index 550aa356c..9800f8f47 100644 --- a/src/CxbxKrnl/EmuKrnlKe.cpp +++ b/src/CxbxKrnl/EmuKrnlKe.cpp @@ -399,10 +399,10 @@ XBSYSAPI EXPORTNUM(96) xboxkrnl::NTSTATUS NTAPI xboxkrnl::KeBugCheckEx char buffer[1024]; sprintf(buffer, "The running software triggered KeBugCheck with the following information\n" "BugCheckCode: 0x%08X\n" - "BugCheckParamater1 0x%08X\n" - "BugCheckParamater2 0x%08X\n" - "BugCheckParamater3 0x%08X\n" - "BugCheckParamater4 0x%08X\n" + "BugCheckParameter1: 0x%08X\n" + "BugCheckParameter2: 0x%08X\n" + "BugCheckParameter3: 0x%08X\n" + "BugCheckParameter4: 0x%08X\n" "\nThis is the Xbox equivalent to a BSOD and would cause the console to automatically reboot\n" "\nContinue Execution (Not Recommended)?\n", BugCheckCode, BugCheckParameter1, BugCheckParameter2, BugCheckParameter3, BugCheckParameter4);