From 969345d58fdb9cc5fb75bef50257f3b532dbd957 Mon Sep 17 00:00:00 2001 From: "Derek \"Turtle\" Roe" Date: Fri, 19 Mar 2021 00:43:56 -0500 Subject: [PATCH] Update Interpreter CPU.h Change multi line comment to single line and fix capitalization --- Source/RSP/Interpreter CPU.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Source/RSP/Interpreter CPU.h b/Source/RSP/Interpreter CPU.h index 68fdd2301..1d21d70a2 100644 --- a/Source/RSP/Interpreter CPU.h +++ b/Source/RSP/Interpreter CPU.h @@ -12,10 +12,9 @@ extern DWORD RSP_NextInstruction, RSP_JumpTo, RSP_MfStatusCount; -/* - * standard MIPS PC-relative branch - * returns the new PC, based on whether the condition passes - */ +// Standard MIPS PC-relative branch +// Returns the new PC, based on whether the condition passes + unsigned int RSP_branch_if(int condition); void BuildInterpreterCPU(void);