'Fix' compiling on platforms other than the DC

This commit is contained in:
Luke Benstead 2018-07-15 20:44:15 +01:00
parent 9191c93cf6
commit 8ef63c75af

View File

@ -1,7 +1,11 @@
#include <float.h>
#include <stdio.h>
#ifdef _arch_dreamcast
#include <dc/pvr.h>
#else
#define PVR_PACK_COLOR(a, r, g, b) {}
#endif
#include "clip.h"
#include "../containers/aligned_vector.h"