hedgewars/options.inc
author nemo
Sun, 24 Jan 2010 16:46:06 +0000
changeset 2712 8f4527c9137c
parent 2695 ed789a7ef68d
child 2716 b9ca1bfca24f
permissions -rw-r--r--
Minor tweak, try to make long flavour text last longer, move the hurt self messages to unused messages group, so they don't get wiped by crate an instant later.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     1
(*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 515
diff changeset
     2
 * Hedgewars, a free turn based strategy game
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     3
 * Copyright (c) 2004, 2005 Andrey Korotaev <unC0Rr@gmail.com>
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
    12
 * GNU General Public License for more details.
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    17
 *)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    18
2599
c7153d2348f3 move compiler directives to standard pascal
koda
parents: 2590
diff changeset
    19
{$IFDEF FPC}
c7153d2348f3 move compiler directives to standard pascal
koda
parents: 2590
diff changeset
    20
  {$J+}
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2609
diff changeset
    21
{$ELSE}
079ef82eac75 revamped file access and debug display
koda
parents: 2609
diff changeset
    22
  {$ERROR Only Free Pascal supported!}
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
    23
{$ENDIF}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    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
c7153d2348f3 move compiler directives to standard pascal
koda
parents: 2590
diff changeset
    26
  {$DEFINE SDL13}
c7153d2348f3 move compiler directives to standard pascal
koda
parents: 2590
diff changeset
    27
  {$DEFINE GLES11}
c7153d2348f3 move compiler directives to standard pascal
koda
parents: 2590
diff changeset
    28
  {$DEFINE TOUCHINPUT}
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2609
diff changeset
    29
  {$DEFINE LOWRES}
2694
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2672
diff changeset
    30
  {$DEFINE SDL_IMAGE_NEWER}
2695
ed789a7ef68d makes freepascal code compatible with OBJFPC mode
koda
parents: 2694
diff changeset
    31
  {$MODE OBJFPC}
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2609
diff changeset
    32
{$ENDIF}
079ef82eac75 revamped file access and debug display
koda
parents: 2609
diff changeset
    33
079ef82eac75 revamped file access and debug display
koda
parents: 2609
diff changeset
    34
{$IFNDEF DARWIN}
079ef82eac75 revamped file access and debug display
koda
parents: 2609
diff changeset
    35
  {$DEFINE DEBUGFILE}
079ef82eac75 revamped file access and debug display
koda
parents: 2609
diff changeset
    36
  {  $DEFINE DUMP}
079ef82eac75 revamped file access and debug display
koda
parents: 2609
diff changeset
    37
  {  $DEFINE TRACEAIACTIONS}
079ef82eac75 revamped file access and debug display
koda
parents: 2609
diff changeset
    38
  {  $DEFINE COUNTTICKS}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2586
diff changeset
    39
{$ENDIF}
e7e87e3c67db touch control completely revamped
koda
parents: 2586
diff changeset
    40
e7e87e3c67db touch control completely revamped
koda
parents: 2586
diff changeset
    41
{$IFDEF TOUCHINPUT}
2599
c7153d2348f3 move compiler directives to standard pascal
koda
parents: 2590
diff changeset
    42
  {$DEFINE SDL13}
2590
e7e87e3c67db touch control completely revamped
koda
parents: 2586
diff changeset
    43
{$ENDIF}
2609
b67624c7d61e add a x86_64 mac target
koda
parents: 2608
diff changeset
    44