Skip to content

Commit

Permalink
misc changes, make sure where using the 2010 toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
death-droid committed Oct 15, 2012
1 parent 5711df9 commit 56e3dc0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
1 change: 0 additions & 1 deletion Config.cpp
Expand Up @@ -89,7 +89,6 @@ const SettingInfo ForceTextureFilterSettings[] =
"N64 Default Texture Filter", FORCE_DEFAULT_FILTER,
"Force Nearest Filter (faster, low quality)", FORCE_POINT_FILTER,
"Force Linear Filter (slower, better quality)", FORCE_LINEAR_FILTER,

};

const SettingInfo TextureEnhancementSettings[] =
Expand Down
8 changes: 2 additions & 6 deletions Parser/RSP_Parser.cpp
Expand Up @@ -965,10 +965,10 @@ void RSP_GFX_InitGeometryMode()
{
bool bCullFront = (gRDP.geometryMode & G_CULL_FRONT) ? true : false;
bool bCullBack = (gRDP.geometryMode & G_CULL_BACK) ? true : false;

if( bCullFront && bCullBack ) // should never cull front
{
bCullFront = false;
}

CRender::g_pRender->SetCullMode(bCullFront, bCullBack);

BOOL bShade = (gRDP.geometryMode & G_SHADE) ? TRUE : FALSE;
Expand Down Expand Up @@ -1095,13 +1095,9 @@ void DLParser_RDPSetOtherMode(Gfx *gfx)
uint16 blender = gRDP.otherMode.blender;
RDP_BlenderSetting &bl = *(RDP_BlenderSetting*)(&(blender));
if( bl.c1_m1a==3 || bl.c1_m2a == 3 || bl.c2_m1a == 3 || bl.c2_m2a == 3 )
{
gRDP.bFogEnableInBlender = true;
}
else
{
gRDP.bFogEnableInBlender = false;
}
}


Expand Down
2 changes: 1 addition & 1 deletion RiceVideo.vcxproj
Expand Up @@ -24,7 +24,7 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<PlatformToolset>v110</PlatformToolset>
<PlatformToolset>v100</PlatformToolset>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
Expand Down

0 comments on commit 56e3dc0

Please sign in to comment.