mirror of https://github.com/PCSX2/pcsx2.git
A couple minor compiler warning fixes.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1455 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
d9b5baf8f6
commit
c13cc555be
|
@ -90,6 +90,8 @@ __forceinline DataType __fastcall MemOp_r0(u32 addr)
|
|||
|
||||
jNO_DEFAULT;
|
||||
}
|
||||
|
||||
return 0; // technically unreachable, but suppresses warnings.
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
|
|
@ -128,7 +128,7 @@ static void InitLibraryName()
|
|||
strcpy( libraryName, "ZeroSPU2"
|
||||
# ifdef PCSX2_DEBUG
|
||||
"-Debug"
|
||||
# elseif ZEROSPU2_DEVBUILD
|
||||
# elif defined( ZEROSPU2_DEVBUILD )
|
||||
"-Dev"
|
||||
# endif
|
||||
);
|
||||
|
@ -140,7 +140,7 @@ static void InitLibraryName()
|
|||
sprintf_s( libraryName, "ZeroSPU2 r%d%s"
|
||||
# ifdef PCSX2_DEBUG
|
||||
"-Debug"
|
||||
# elif ZEROSPU2_DEVBUILD
|
||||
# elif defined( ZEROSPU2_DEVBUILD )
|
||||
"-Dev"
|
||||
# endif
|
||||
,SVN_REV,
|
||||
|
@ -153,7 +153,7 @@ static void InitLibraryName()
|
|||
strcpy( libraryName, "ZeroSPU2 Playground"
|
||||
# ifdef PCSX2_DEBUG
|
||||
"-Debug"
|
||||
# elif ZEROSPU2_DEVBUILD
|
||||
# elif defined( ZEROSPU2_DEVBUILD )
|
||||
"-Dev"
|
||||
# endif
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue