diff options
| author | skidau <skidau@gmail.com> | 2010-12-19 13:25:57 +0000 |
|---|---|---|
| committer | skidau <skidau@gmail.com> | 2010-12-19 13:25:57 +0000 |
| commit | 0b72d34f6dfc469ab400feb72ec5b19445f84602 (patch) | |
| tree | 287816acf3877a8a3f871f951164335e441aa890 /Source/Core/VideoCommon/Src/OpenCL/OCLTextureDecoder.cpp | |
| parent | 9114c96c784ae16e0c66d6016d489564be4319b4 (diff) | |
Build fix for Linux x86
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6609 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon/Src/OpenCL/OCLTextureDecoder.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Src/OpenCL/OCLTextureDecoder.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/Src/OpenCL/OCLTextureDecoder.cpp b/Source/Core/VideoCommon/Src/OpenCL/OCLTextureDecoder.cpp index aec7106757..13034b2b50 100644 --- a/Source/Core/VideoCommon/Src/OpenCL/OCLTextureDecoder.cpp +++ b/Source/Core/VideoCommon/Src/OpenCL/OCLTextureDecoder.cpp @@ -93,13 +93,13 @@ void TexDecoder_OpenCL_Initialize() return; cl_int err = 1; - u64 binary_size = 0; + size_t binary_size = 0; char *binary = NULL; char *header = NULL; - u32 nDevices = 0; + size_t nDevices = 0; cl_device_id *devices = NULL; cl_program program = NULL; - u64 *binary_sizes = NULL; + size_t *binary_sizes = NULL; char **binaries = NULL; char filename[1024]; |
