From cbb3134740a2db80e5ba1ba9f47d84362cf20b1f Mon Sep 17 00:00:00 2001 From: refractionpcsx2 Date: Sat, 16 Apr 2022 02:25:42 +0100 Subject: [PATCH] App/BIOS: Clean up warnings --- pcsx2/gui/AppInit.cpp | 4 ++-- pcsx2/ps2/BiosTools.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2/gui/AppInit.cpp b/pcsx2/gui/AppInit.cpp index cebe5558cf..731bf86b93 100644 --- a/pcsx2/gui/AppInit.cpp +++ b/pcsx2/gui/AppInit.cpp @@ -467,7 +467,7 @@ bool Pcsx2App::OnInit() { g_Conf->Folders.RunELF = elfFile.GetPath(); sApp.SysExecute(Startup.CdvdSource, Startup.ElfFile); - if (Startup.ElfFile.Find(' ') == NULL) + if (Startup.ElfFile.Find(' ') == -1) EmuConfig.CurrentGameArgs = StringUtil::wxStringToUTF8String(Startup.GameLaunchArgs); } } @@ -479,7 +479,7 @@ bool Pcsx2App::OnInit() // FIXME: ElfFile is an irx it will crash sApp.SysExecute(Startup.CdvdSource, Startup.ElfFile); - if (Startup.ElfFile.Find(' ') == NULL) + if (Startup.ElfFile.Find(' ') == -1) EmuConfig.CurrentGameArgs = StringUtil::wxStringToUTF8String(Startup.GameLaunchArgs); } } diff --git a/pcsx2/ps2/BiosTools.cpp b/pcsx2/ps2/BiosTools.cpp index 3b2739749e..af2e78c0ef 100644 --- a/pcsx2/ps2/BiosTools.cpp +++ b/pcsx2/ps2/BiosTools.cpp @@ -102,7 +102,7 @@ static bool LoadBiosVersion(std::FILE* fp, u32& version, std::string& descriptio // clang-format on } - if (region >= 0 && region <= 7) + if (region <= 7) { zone = BiosZoneStrings[region]; }