From 3b1ba3cdb5fbced37f397d91c4578ebdbc6ef434 Mon Sep 17 00:00:00 2001 From: "Derek \"Turtle\" Roe" Date: Fri, 19 Mar 2021 00:28:58 -0500 Subject: [PATCH] Update breakpoint.c Fix some title case and capitalization --- Source/RSP/breakpoint.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/RSP/breakpoint.c b/Source/RSP/breakpoint.c index e36185a9e..c4b201036 100644 --- a/Source/RSP/breakpoint.c +++ b/Source/RSP/breakpoint.c @@ -24,7 +24,7 @@ int AddRSP_BPoint( DWORD Location, int Confirm ) if (NoOfBpoints == MaxBPoints) { - DisplayError("Max amount of Break Points set"); + DisplayError("Max amount of break points set"); return FALSE; } @@ -32,7 +32,7 @@ int AddRSP_BPoint( DWORD Location, int Confirm ) { if (BPoint[count].Location == Location) { - DisplayError("You already have this Break Point"); + DisplayError("You already have this break point"); return FALSE; } } @@ -77,7 +77,7 @@ void CreateBPPanel ( void * hDlg, rectangle rcBox ) { if (hRSPLocation != NULL) { return; } - rcBox = rcBox; // remove warning of unused + rcBox = rcBox; // Remove warning of unused BPoint_Win_hDlg = hDlg; @@ -100,7 +100,7 @@ void HideBPPanel ( void ) void PaintBPPanel ( window_paint ps ) { - TextOut( ps.hdc, 29,60,"Break when the Program Counter equals",37); + TextOut( ps.hdc, 29,60,"Break when the program counter equals",37); TextOut( ps.hdc, 59,85,"0x",2); }