Skip to content

Commit

Permalink
gsdx-ocl: Fix some compile warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
lightningterror committed Mar 12, 2019
1 parent e9e7580 commit c8d4d55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/GSdx/Renderers/OpenCL/GSRendererCL.cpp
Expand Up @@ -139,7 +139,7 @@ void GSRendererCL::Reset()
static int pageuploads = 0; static int pageuploads = 0;
static int pageuploadcount = 0; static int pageuploadcount = 0;
static int tfxcount = 0; static int tfxcount = 0;
static int64 tfxpixels = 0; static long tfxpixels = 0;
static int tfxselcount = 0; static int tfxselcount = 0;
static int tfxdiffselcount = 0; static int tfxdiffselcount = 0;


Expand Down Expand Up @@ -1267,7 +1267,7 @@ void GSRendererCL::UsePages(uint32* p)
*v = GSVector4i::zero(); *v = GSVector4i::zero();
} }


*p++ = GSOffset::EOP; *p++ = (uint32)GSOffset::EOP;

This comment has been minimized.

Copy link
@lightningterror

lightningterror Mar 12, 2019

Author Contributor

Maybe I should've done unsigned int instead. Well they are the same anyway.

} }
} }


Expand Down

0 comments on commit c8d4d55

Please sign in to comment.