duke3d: restrict targets to ARM only
Change-Id: I484d6de2d5d4a495ed54e8ee2a80459785b5f5e8
This commit is contained in:
parent
8d3e3056f7
commit
54d8e67530
2 changed files with 3 additions and 2 deletions
|
@ -76,7 +76,7 @@ iriverify.c
|
|||
|
||||
#if defined(HAVE_LCD_COLOR) && \
|
||||
(!defined(LCD_STRIDEFORMAT) || (LCD_STRIDEFORMAT != VERTICAL_STRIDE))
|
||||
#if (CONFIG_PLATFORM & PLATFORM_NATIVE) && (PLUGIN_BUFFER_SIZE > 0x14000)
|
||||
#if (PLUGIN_BUFFER_SIZE > 0x14000) && defined(CPU_ARM)
|
||||
duke3d.c
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -18,7 +18,8 @@ clock
|
|||
xworld
|
||||
|
||||
/* for duke, etc. */
|
||||
#if (CONFIG_PLATFORM & PLATFORM_NATIVE) && (PLUGIN_BUFFER_SIZE > 0x14000)
|
||||
#if (CONFIG_PLATFORM & PLATFORM_NATIVE) && (PLUGIN_BUFFER_SIZE > 0x14000) && \
|
||||
defined(CPU_ARM)
|
||||
sdl
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue