hedgewars/uConsts.pas
changeset 2697 75880595a9f1
parent 2677 83ad68ceef72
child 2699 249adefa9c1c
--- a/hedgewars/uConsts.pas	Fri Jan 15 10:03:31 2010 +0000
+++ b/hedgewars/uConsts.pas	Sat Jan 16 06:48:56 2010 +0000
@@ -32,6 +32,9 @@
 
 {$INCLUDE "proto.inc"}
 
+// typed const is a variable despite const qualifier
+// in freepascal you may actually use var for the same purpose
+
 type
 
 	TGameState = (gsLandGen, gsStart, gsGame, gsChat, gsConfirm, gsExit);
@@ -162,7 +165,7 @@
 	errmsgIncorrectUse    = 'Incorrect use';
 	errmsgShouldntRun     = 'This program shouldn''t be run manually';
 	errmsgWrongNumber     = 'Wrong parameters number';
-        errmsgSlotsOverflow   = 'CurSlot overflowed';
+	errmsgSlotsOverflow   = 'CurSlot overflowed';
 
 	msgLoading           = 'Loading ';
 	msgOK                = 'ok';
@@ -408,7 +411,28 @@
 			'Sounds/voices',                 // ptVoices
 			'Graphics/Hats'                  // ptHats
 			);
-
+		(*
+	PathzBackup: array[TPathType] of String = (
+			'',                              // ptNone
+			'',                              // ptData
+			'Graphics',                      // ptGraphics
+			'Themes',                        // ptThemes
+			'Themes/avematan',               // ptCurrTheme
+			'Teams',                         // ptTeams
+			'Maps',                          // ptMaps
+			'',                              // ptMapCurrent
+			'Demos',                         // ptDemos
+			'Sounds',                        // ptSounds
+			'Graphics/Graves',               // ptGraves
+			'Fonts',                         // ptFonts
+			'Forts',                         // ptForts
+			'Locale',                        // ptLocale
+			'Graphics/AmmoMenu',             // ptAmmoMenu
+			'Graphics/Hedgehog',             // ptHedgehog
+			'Sounds/voices',                 // ptVoices
+			'Graphics/Hats'                  // ptHats
+			);
+		*)	
 	SpritesData: array[TSprite] of record
 			FileName: String[14];
 			Path, AltPath: TPathType;