summaryrefslogtreecommitdiff
path: root/apps/plugins/chessbox.c
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-05-18 14:14:53 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-05-18 14:14:53 +0000
commit681cedb4d8e55647fd3a125cdd2966c7d2ccd200 (patch)
treed6f20a6184bf71aa26361457fef5c1f989c667e8 /apps/plugins/chessbox.c
parent6e15b710c0eb3353ef6b17d07424b80058e5e88f (diff)
downloadrockbox-681cedb4d8e55647fd3a125cdd2966c7d2ccd200.tar.gz
rockbox-681cedb4d8e55647fd3a125cdd2966c7d2ccd200.zip
Build overlay plugins for all targets with PLUGIN_BUFFER <= 0x10000 bytes
Bring Clipv1 & m200v4 plugin buffer down to this limit zxbox, chessbox and rockboy build on the clip rockboy doesn't build on m200v4 due to not enough buttons to make a keymap Some gameboy roms won't run on Clipv1: tetris does but not pokemon for example git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26144 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/chessbox.c')
-rw-r--r--apps/plugins/chessbox.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/plugins/chessbox.c b/apps/plugins/chessbox.c
index 3eace4ca22..a6db7ba949 100644
--- a/apps/plugins/chessbox.c
+++ b/apps/plugins/chessbox.c
@@ -22,8 +22,6 @@
22 ****************************************************************************/ 22 ****************************************************************************/
23#include "plugin.h" 23#include "plugin.h"
24 24
25#if MEM <= 8 && !defined(SIMULATOR)
26
27#include "lib/overlay.h" 25#include "lib/overlay.h"
28 26
29PLUGIN_HEADER 27PLUGIN_HEADER
@@ -33,4 +31,3 @@ enum plugin_status plugin_start(const void* parameter)
33{ 31{
34 return run_overlay(parameter, PLUGIN_GAMES_DIR "/chessbox.ovl", "ChessBox"); 32 return run_overlay(parameter, PLUGIN_GAMES_DIR "/chessbox.ovl", "ChessBox");
35} 33}
36#endif