From db8dbae13180dcf4cd1e6a26269ac6b9e85767b1 Mon Sep 17 00:00:00 2001 From: James Cowgill Date: Fri, 19 Feb 2016 01:48:10 +0000 Subject: [PATCH] Fix some very minor spelling mistakes Found by Lintian https://lintian.debian.org/ --- Source/Core/Common/GekkoDisassembler.cpp | 2 +- Source/Core/Core/HW/DSPLLE/DSPLLE.cpp | 2 +- Source/Core/Core/HW/ProcessorInterface.cpp | 2 +- Source/Core/Core/NetPlayServer.cpp | 2 +- Source/Core/VideoBackends/D3D12/D3DState.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Core/Common/GekkoDisassembler.cpp b/Source/Core/Common/GekkoDisassembler.cpp index 2a04298fdd..b638faf429 100644 --- a/Source/Core/Common/GekkoDisassembler.cpp +++ b/Source/Core/Common/GekkoDisassembler.cpp @@ -1182,7 +1182,7 @@ void GekkoDisassembler::ps_mem(u32 inst) } // Disassemble PPC instruction and return a pointer to the next -// instruction, or nullptr if an error occured. +// instruction, or nullptr if an error occurred. u32* GekkoDisassembler::DoDisassembly(bool big_endian) { u32 in = *m_instr; diff --git a/Source/Core/Core/HW/DSPLLE/DSPLLE.cpp b/Source/Core/Core/HW/DSPLLE/DSPLLE.cpp index 9d8365ffb2..32e3bbca50 100644 --- a/Source/Core/Core/HW/DSPLLE/DSPLLE.cpp +++ b/Source/Core/Core/HW/DSPLLE/DSPLLE.cpp @@ -257,7 +257,7 @@ void DSPLLE::DSP_WriteMailBoxHigh(bool _CPUMailbox, u16 _uHighMail) { if (gdsp_mbox_peek(MAILBOX_CPU) & 0x80000000) { - ERROR_LOG(DSPLLE, "Mailbox isnt empty ... strange"); + ERROR_LOG(DSPLLE, "Mailbox isn't empty ... strange"); } #if PROFILE diff --git a/Source/Core/Core/HW/ProcessorInterface.cpp b/Source/Core/Core/HW/ProcessorInterface.cpp index 563203cbd8..25ff283608 100644 --- a/Source/Core/Core/HW/ProcessorInterface.cpp +++ b/Source/Core/Core/HW/ProcessorInterface.cpp @@ -187,7 +187,7 @@ void SetInterrupt(u32 _causemask, bool _bSet) else m_InterruptCause &= ~_causemask;// is there any reason to have this possibility? // F|RES: i think the hw devices reset the interrupt in the PI to 0 - // if the interrupt cause is eliminated. that isnt done by software (afaik) + // if the interrupt cause is eliminated. that isn't done by software (afaik) UpdateException(); } diff --git a/Source/Core/Core/NetPlayServer.cpp b/Source/Core/Core/NetPlayServer.cpp index e3d2025e17..51827a5076 100644 --- a/Source/Core/Core/NetPlayServer.cpp +++ b/Source/Core/Core/NetPlayServer.cpp @@ -925,7 +925,7 @@ bool NetPlayServer::initUPnP() #endif if (!devlist) { - WARN_LOG(NETPLAY, "An error occured trying to discover UPnP devices."); + WARN_LOG(NETPLAY, "An error occurred trying to discover UPnP devices."); m_upnp_error = true; m_upnp_inited = false; diff --git a/Source/Core/VideoBackends/D3D12/D3DState.cpp b/Source/Core/VideoBackends/D3D12/D3DState.cpp index d0df14371f..c2a3ecd1a0 100644 --- a/Source/Core/VideoBackends/D3D12/D3DState.cpp +++ b/Source/Core/VideoBackends/D3D12/D3DState.cpp @@ -143,7 +143,7 @@ void StateCache::Init() { // If a PSO fails to create, that means either: // - The file itself is corrupt. - // - A driver/HW change has occured, causing the existing cache blobs to be invalid. + // - A driver/HW change has occurred, causing the existing cache blobs to be invalid. // // In either case, we want to re-create the disk cache. This should not be a frequent occurence.