Browse Source

SceKernelMemBlockType to unsigned int

Jaylon Gowie 3 years ago
parent
commit
d9009388c8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/render/vitagxm/SDL_render_vita_gxm_memory.h

+ 1 - 1
src/render/vitagxm/SDL_render_vita_gxm_memory.h

@@ -29,7 +29,7 @@
 
 #define ALIGN(x, a) (((x) + ((a) - 1)) & ~((a) - 1))
 
-void *vita_mem_alloc(SceKernelMemBlockType type, unsigned int size, unsigned int alignment, unsigned int attribs, SceUID *uid);
+void *vita_mem_alloc(unsigned int type, unsigned int size, unsigned int alignment, unsigned int attribs, SceUID *uid);
 void vita_mem_free(SceUID uid);
 void *vita_gpu_mem_alloc(VITA_GXM_RenderData *data, unsigned int size);
 void vita_gpu_mem_free(VITA_GXM_RenderData *data, void* ptr);