Fixed PSP compiling

This commit is contained in:
2025-08-22 20:52:59 -05:00
parent f9385ed233
commit 1fb9485ee8
12 changed files with 154 additions and 16 deletions

View File

@@ -19,9 +19,11 @@ typedef enum {
#define MESH_VERTEX_POS_SIZE 3
typedef struct {
GLubyte color[MESH_VERTEX_COLOR_SIZE];
GLfloat uv[MESH_VERTEX_UV_SIZE];
GLfloat pos[MESH_VERTEX_POS_SIZE];
#if DUSK_DISPLAY_SDL2
GLubyte color[MESH_VERTEX_COLOR_SIZE];
GLfloat uv[MESH_VERTEX_UV_SIZE];
GLfloat pos[MESH_VERTEX_POS_SIZE];
#endif
} meshvertex_t;
typedef struct {