Fix recent changes in VitaSDK

main
Jaylon Gowie 2022-04-19 14:42:39 -05:00 committed by Sam Lantinga
parent 02225aa738
commit 3753a7b1c3
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
#include "SDL_render_vita_gxm_memory.h"
void *
vita_mem_alloc(SceKernelMemBlockType type, unsigned int size, unsigned int alignment, unsigned int attribs, SceUID *uid)
vita_mem_alloc(unsigned int type, unsigned int size, unsigned int alignment, unsigned int attribs, SceUID *uid)
{
void *mem;

View File

@ -31,7 +31,7 @@
#define ALIGN(x, a) (((x) + ((a) - 1)) & ~((a) - 1))
#define DISPLAY_PIXEL_FORMAT SCE_DISPLAY_PIXELFORMAT_A8B8G8R8
void *vita_gpu_alloc(SceKernelMemBlockType type, unsigned int size, SceUID *uid)
void *vita_gpu_alloc(unsigned int type, unsigned int size, SceUID *uid)
{
void *mem;