diff options
Diffstat (limited to 'examples/graphics/rgb24')
| -rw-r--r-- | examples/graphics/rgb24/main.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/graphics/rgb24/main.c b/examples/graphics/rgb24/main.c index 9f1a647..3c0bebf 100644 --- a/examples/graphics/rgb24/main.c +++ b/examples/graphics/rgb24/main.c @@ -12,16 +12,19 @@ * * Changelog: * - * 05-03-2019 - Initial version. + * May 10, 2021 - Variable types updated for psxgpu.h changes. + * + * May 3, 2019 - Initial version. * */ +#include <sys/types.h> #include <stdio.h> #include <psxgte.h> #include <psxgpu.h> // So data from tim.s can be accessed -extern unsigned int tim_image[]; +extern u_long tim_image[]; int main() { |
