diff --git a/Kernel/arch/amd64/cpu/idt.cpp b/Kernel/arch/amd64/cpu/idt.cpp index a78a8292..d7e358e5 100644 --- a/Kernel/arch/amd64/cpu/idt.cpp +++ b/Kernel/arch/amd64/cpu/idt.cpp @@ -650,7 +650,7 @@ namespace InterruptDescriptorTable #ifdef DEBUG EnableISRs = !DebuggerIsAttached; if (!EnableISRs) - KPrint("\x1b[34mThe debugger is attached, disabling all ISRs."); + KPrint("\x1b[32mThe debugger is attached, disabling all ISRs."); #endif /* ISR */ diff --git a/Kernel/arch/i386/cpu/idt.cpp b/Kernel/arch/i386/cpu/idt.cpp index 497f6337..9632e1e2 100644 --- a/Kernel/arch/i386/cpu/idt.cpp +++ b/Kernel/arch/i386/cpu/idt.cpp @@ -464,7 +464,7 @@ namespace InterruptDescriptorTable // #ifdef DEBUG EnableISRs = !DebuggerIsAttached; if (!EnableISRs) - KPrint("\x1b[34mThe debugger is attached, disabling all ISRs."); + KPrint("\x1b[32mThe debugger is attached, disabling all ISRs."); // #endif SetEntry(0x0, InterruptHandler_0x0, TRAP_GATE_32BIT, RING0, EnableISRs, GDT_KERNEL_CODE);