From d2eb58d7e8b25e5a597304771732e526831178ca Mon Sep 17 00:00:00 2001 From: Falco Girgis Date: Tue, 18 Feb 2025 22:00:46 -0600 Subject: [PATCH] Moved DC include into #ifdef to fix x86 build. --- samples/nehe16/main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/samples/nehe16/main.c b/samples/nehe16/main.c index 53f98f8..498d71a 100644 --- a/samples/nehe16/main.c +++ b/samples/nehe16/main.c @@ -8,13 +8,12 @@ (c)2000 Jeff Molofee */ -#include - #include #include #include #ifdef __DREAMCAST__ +#include extern uint8 romdisk[]; KOS_INIT_ROMDISK(romdisk); #define IMG_PATH "/rd/glass.pvr"