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:
Jake.Stine 2009-07-03 01:06:53 +00:00
parent d9b5baf8f6
commit c13cc555be
2 changed files with 5 additions and 3 deletions

View File

@ -90,6 +90,8 @@ __forceinline DataType __fastcall MemOp_r0(u32 addr)
jNO_DEFAULT; jNO_DEFAULT;
} }
return 0; // technically unreachable, but suppresses warnings.
} }
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------

View File

@ -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
); );