diff options
author | sr55 <[email protected]> | 2009-06-29 20:28:03 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-06-29 20:28:03 +0000 |
commit | 26a82197bdff69431b744f5e7f7260344e9c3bf4 (patch) | |
tree | d4155399c0f9f7197b4377094728ec837da7705d | |
parent | fafb7a774fba159de59fd54e5bf10b53a2382f7d (diff) |
WinGui:
- Possible fix for QuickTime player not working on 64bit systems.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2641 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | win/C#/HandBrakeCS.csproj | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/win/C#/HandBrakeCS.csproj b/win/C#/HandBrakeCS.csproj index a9727def5..3e90b7125 100644 --- a/win/C#/HandBrakeCS.csproj +++ b/win/C#/HandBrakeCS.csproj @@ -51,6 +51,7 @@ <NoStdLib>false</NoStdLib>
<DocumentationFile>
</DocumentationFile>
+ <PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
@@ -67,7 +68,7 @@ <NoStdLib>false</NoStdLib>
<DebugSymbols>true</DebugSymbols>
<FileAlignment>512</FileAlignment>
- <PlatformTarget>AnyCPU</PlatformTarget>
+ <PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
@@ -82,7 +83,7 @@ <OutputPath>bin\Build\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<DebugType>pdbonly</DebugType>
- <PlatformTarget>AnyCPU</PlatformTarget>
+ <PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Build|x86' ">
|