From 0b72d34f6dfc469ab400feb72ec5b19445f84602 Mon Sep 17 00:00:00 2001 From: skidau Date: Sun, 19 Dec 2010 13:25:57 +0000 Subject: [PATCH] Build fix for Linux x86 git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6609 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/VideoCommon/Src/OpenCL/OCLTextureDecoder.cpp | 6 +++--- 1 file 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];