From bb05542e60b80345cf29665d63c30a4b486019a3 Mon Sep 17 00:00:00 2001 From: James Benton Date: Sun, 28 May 2017 12:00:07 +0100 Subject: [PATCH] gx2r: Fix GX2R allocated memory flag. --- include/gx2r/resource.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/gx2r/resource.h b/include/gx2r/resource.h index 41229af..543f967 100644 --- a/include/gx2r/resource.h +++ b/include/gx2r/resource.h @@ -79,8 +79,8 @@ typedef enum GX2RResourceFlags //! Resource is locked for read-only access GX2R_RESOURCE_LOCKED_READ_ONLY = 1 << 22, - //! Resource is to be allocated in user memory - GX2R_RESOURCE_USER_MEMORY = 1 << 29, + //! Resource was allocated by GX2R. + GX2R_RESOURCE_GX2R_ALLOCATED = 1 << 29, //! Resource is locked for all access GX2R_RESOURCE_LOCKED = 1 << 30,