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;
|
jNO_DEFAULT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0; // technically unreachable, but suppresses warnings.
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------------
|
// ------------------------------------------------------------------------
|
||||||
|
|
|
@ -128,7 +128,7 @@ static void InitLibraryName()
|
||||||
strcpy( libraryName, "ZeroSPU2"
|
strcpy( libraryName, "ZeroSPU2"
|
||||||
# ifdef PCSX2_DEBUG
|
# ifdef PCSX2_DEBUG
|
||||||
"-Debug"
|
"-Debug"
|
||||||
# elseif ZEROSPU2_DEVBUILD
|
# elif defined( ZEROSPU2_DEVBUILD )
|
||||||
"-Dev"
|
"-Dev"
|
||||||
# endif
|
# endif
|
||||||
);
|
);
|
||||||
|
@ -140,7 +140,7 @@ static void InitLibraryName()
|
||||||
sprintf_s( libraryName, "ZeroSPU2 r%d%s"
|
sprintf_s( libraryName, "ZeroSPU2 r%d%s"
|
||||||
# ifdef PCSX2_DEBUG
|
# ifdef PCSX2_DEBUG
|
||||||
"-Debug"
|
"-Debug"
|
||||||
# elif ZEROSPU2_DEVBUILD
|
# elif defined( ZEROSPU2_DEVBUILD )
|
||||||
"-Dev"
|
"-Dev"
|
||||||
# endif
|
# endif
|
||||||
,SVN_REV,
|
,SVN_REV,
|
||||||
|
@ -153,7 +153,7 @@ static void InitLibraryName()
|
||||||
strcpy( libraryName, "ZeroSPU2 Playground"
|
strcpy( libraryName, "ZeroSPU2 Playground"
|
||||||
# ifdef PCSX2_DEBUG
|
# ifdef PCSX2_DEBUG
|
||||||
"-Debug"
|
"-Debug"
|
||||||
# elif ZEROSPU2_DEVBUILD
|
# elif defined( ZEROSPU2_DEVBUILD )
|
||||||
"-Dev"
|
"-Dev"
|
||||||
# endif
|
# endif
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue