author | koda |
Fri, 20 Nov 2009 21:22:05 +0000 | |
changeset 2630 | 079ef82eac75 |
parent 2609 | b67624c7d61e |
child 2672 | 0f1403bf267a |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4 | 3 |
* Copyright (c) 2004, 2005 Andrey Korotaev <unC0Rr@gmail.com> |
4 |
* |
|
183 | 5 |
* This program is free software; you can redistribute it and/or modify |
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
4 | 8 |
* |
183 | 9 |
* This program is distributed in the hope that it will be useful, |
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
4 | 13 |
* |
183 | 14 |
* You should have received a copy of the GNU General Public License |
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
4 | 17 |
*) |
18 |
||
2599 | 19 |
{$IFDEF FPC} |
20 |
{$J+} |
|
2630 | 21 |
{$ELSE} |
22 |
{$ERROR Only Free Pascal supported!} |
|
2600 | 23 |
{$ENDIF} |
4 | 24 |
|
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
1066
diff
changeset
|
25 |
{$IFDEF IPHONEOS} |
2599 | 26 |
{$DEFINE SDL13} |
27 |
{$DEFINE GLES11} |
|
28 |
{$DEFINE TOUCHINPUT} |
|
2630 | 29 |
{$DEFINE LOWRES} |
30 |
{$ENDIF} |
|
31 |
||
32 |
{$IFNDEF DARWIN} |
|
33 |
{$DEFINE DEBUGFILE} |
|
34 |
{ $DEFINE DUMP} |
|
35 |
{ $DEFINE TRACEAIACTIONS} |
|
36 |
{ $DEFINE COUNTTICKS} |
|
2590 | 37 |
{$ENDIF} |
38 |
||
39 |
{$IFDEF TOUCHINPUT} |
|
2599 | 40 |
{$DEFINE SDL13} |
2590 | 41 |
{$ENDIF} |
2609 | 42 |