iop: use const on some variables

Avoid coverity warning
This commit is contained in:
Gregory Hainaut 2016-11-12 18:26:28 +01:00
parent 056ecb1c39
commit a7e76438b2
1 changed files with 5 additions and 5 deletions

View File

@ -511,12 +511,12 @@ static void psxRecompileIrxImport()
const std::string libname = iopMemReadString(import_table + 12, 8);
irxHLE hle = irxImportHLE(libname, index);
irxDEBUG debug = 0;
const char *funcname = 0;
#ifdef PCSX2_DEVBUILD
funcname = irxImportFuncname(libname, index);
debug = irxImportDebug(libname, index);
const irxDEBUG debug = irxImportDebug(libname, index);
const char* funcname = irxImportFuncname(libname, index);
#else
const irxDEBUG debug = 0;
const char *funcname = nullptr;
#endif
if (!hle && !debug && (!SysTraceActive(IOP.Bios) || !funcname))