mirror of https://github.com/PCSX2/pcsx2.git
Some quick fixes.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1252 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
08d3360376
commit
7519fb8113
|
@ -51,11 +51,11 @@
|
|||
# endif
|
||||
# else
|
||||
# ifdef _MSC_VER
|
||||
# define jBREAKPOINT() do { __asm int 3 } while(0)
|
||||
# define jBREAKPOINT() do { __asm int 3 } while(0);
|
||||
# else
|
||||
# define jBREAKPOINT() ((void) *(volatile char *) 0)
|
||||
# endif
|
||||
# define jASSUME(exp) do { if(exp) ; else jBREAKPOINT() } while(0)
|
||||
# define jASSUME(exp) do { if(exp) ; else jBREAKPOINT() } while(0);
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
@ -71,9 +71,9 @@
|
|||
//
|
||||
#ifndef jNO_DEFAULT
|
||||
#define jNO_DEFAULT \
|
||||
{ \
|
||||
default: \
|
||||
jASSUME(0); \
|
||||
{ \
|
||||
jASSUME(0); \
|
||||
break; \
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -17,8 +17,8 @@
|
|||
<Configurations>
|
||||
<Configuration
|
||||
Name="Devel|Win32"
|
||||
InheritedPropertySheets=".\vsprops\pcsx2_plugin_common.vsprops"
|
||||
ConfigurationType="2"
|
||||
InheritedPropertySheets=".\vsprops\pcsx2_plugin_common.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
CharacterSet="2"
|
||||
|
@ -102,11 +102,14 @@
|
|||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
InheritedPropertySheets=".\vsprops\pcsx2_plugin_common.vsprops"
|
||||
ConfigurationType="2"
|
||||
InheritedPropertySheets=".\vsprops\pcsx2_plugin_common.vsprops"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
|
@ -175,11 +178,14 @@
|
|||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
InheritedPropertySheets=".\vsprops\pcsx2_plugin_common.vsprops"
|
||||
ConfigurationType="2"
|
||||
InheritedPropertySheets=".\vsprops\pcsx2_plugin_common.vsprops"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||
CharacterSet="2"
|
||||
|
@ -265,6 +271,9 @@
|
|||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
|
@ -278,6 +287,14 @@
|
|||
RelativePath=".\Conf.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\GifTransfer.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\GifTransfer.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\glprocs.c"
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue