summaryrefslogtreecommitdiff
path: root/apps/plugins/xrick/config.h
diff options
context:
space:
mode:
authorSebastian Leonhardt <sebastian.leonhardt@web.de>2016-01-08 01:05:36 +0100
committerSolomon Peachy <pizza@shaftnet.org>2024-06-30 17:24:16 -0400
commit102c3742487dba76ec72d5f56a2c3041344b2d68 (patch)
tree4931ad34d2cc0bac56d9984b9ead355d012ad63a /apps/plugins/xrick/config.h
parent6f1e67e5e318ba2fd0f5ec1892c7b6633ec6521c (diff)
downloadrockbox-102c3742487dba76ec72d5f56a2c3041344b2d68.tar.gz
rockbox-102c3742487dba76ec72d5f56a2c3041344b2d68.zip
added xrick game
original xrick code by 'BigOrno' at: http://www.bigorno.net/xrick/ Rockbox port, plus bugfixes at: https://github.com/pierluigi-vicinanza/xrick Further changes: * Additonal fixes from g#3026 * Port to modern plugin API * Add Pluginlib keymap fallback * Support all >1bpp screens * Fix build warnings in miniz * Better error message when resources are missing Change-Id: Id83928bc2539901b0221692f65cbca41389c58e7
Diffstat (limited to 'apps/plugins/xrick/config.h')
-rw-r--r--apps/plugins/xrick/config.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/apps/plugins/xrick/config.h b/apps/plugins/xrick/config.h
new file mode 100644
index 0000000000..31ecc79bb7
--- /dev/null
+++ b/apps/plugins/xrick/config.h
@@ -0,0 +1,58 @@
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Port of xrick, a Rick Dangerous clone, to Rockbox.
11 * See http://www.bigorno.net/xrick/
12 *
13 * Copyright (C) 2008-2014 Pierluigi Vicinanza
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
19 *
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
22 *
23 ****************************************************************************/
24
25#ifndef XRICK_CONFIG_H
26#define XRICK_CONFIG_H
27
28/* graphics (choose one) */
29#define GFXST
30#undef GFXPC
31
32/* sound support */
33#define ENABLE_SOUND
34
35/* cheats support */
36#define ENABLE_CHEATS
37
38/* development tools */
39#undef ENABLE_DEVTOOLS
40
41/* Print debug info to screen */
42#undef ENABLE_SYSPRINTF_TO_SCREEN
43
44/* enable/disable subsystem debug */
45#undef DEBUG_MEMORY
46#undef DEBUG_ENTS
47#undef DEBUG_SCROLLER
48#undef DEBUG_MAPS
49#undef DEBUG_JOYSTICK
50#undef DEBUG_EVENTS
51#undef DEBUG_AUDIO
52#undef DEBUG_AUDIO2
53#undef DEBUG_VIDEO
54#undef DEBUG_VIDEO2
55
56#endif /* ndef XRICK_CONFIG_H */
57
58/* eof */