diff options
| author | hrydgard <hrydgard@gmail.com> | 2009-03-05 22:35:06 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2009-03-05 22:35:06 +0000 |
| commit | 02a4b49df196471bd56cd73b46891074cbdfdc34 (patch) | |
| tree | 737f0be4114aa2c6f2ecf7ade9fe28b10b950586 /Source/Plugins/Plugin_VideoDX9/Src/PixelShaderCache.cpp | |
| parent | 3f840806b3c3504d826d29ce7c7c1d336c02adc7 (diff) | |
just some compiler warning cleanup.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2562 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Plugins/Plugin_VideoDX9/Src/PixelShaderCache.cpp')
| -rw-r--r-- | Source/Plugins/Plugin_VideoDX9/Src/PixelShaderCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Plugins/Plugin_VideoDX9/Src/PixelShaderCache.cpp b/Source/Plugins/Plugin_VideoDX9/Src/PixelShaderCache.cpp index c38ac2aab4..4fb7b82ef1 100644 --- a/Source/Plugins/Plugin_VideoDX9/Src/PixelShaderCache.cpp +++ b/Source/Plugins/Plugin_VideoDX9/Src/PixelShaderCache.cpp @@ -85,7 +85,7 @@ void PixelShaderCache::SetShader() bool HLSL = false; const char *code = GeneratePixelShader(PixelShaderManager::GetTextureMask(), false, false, HLSL); - LPDIRECT3DPIXELSHADER9 shader = HLSL ? D3D::CompilePixelShader(code, strlen(code), false) : CompileCgShader(code); + LPDIRECT3DPIXELSHADER9 shader = HLSL ? D3D::CompilePixelShader(code, (int)strlen(code), false) : CompileCgShader(code); if (shader) { //Make an entry in the table |
