From 1e7ce87e239f909da68dfb46dfa2b825202fcdbe Mon Sep 17 00:00:00 2001 From: whiteshark0 Date: Wed, 21 Nov 2007 18:31:32 +0000 Subject: Solved Usdx-1 in Trunk and 1.0.1 ChannelOptions now 'Off', '1', '2', '3'.. instead of '0', '1', '2', '3'.. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/1.0.1@622 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/Classes/UIni.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Game') diff --git a/Game/Code/Classes/UIni.pas b/Game/Code/Classes/UIni.pas index 61f48c6a..e8242886 100644 --- a/Game/Code/Classes/UIni.pas +++ b/Game/Code/Classes/UIni.pas @@ -159,7 +159,7 @@ const IJoypad: array[0..1] of string = ('Off', 'On'); ILPT: array[0..2] of string = ('Off', 'LCD', 'Lights'); - IChannel: array[0..6] of string = ('0', '1', '2', '3', '4', '5', '6'); + IChannel: array[0..6] of string = ('Off', '1', '2', '3', '4', '5', '6'); implementation uses UFiles, SDL, ULanguage, USkins, URecord, UCommandLine; @@ -275,7 +275,7 @@ begin SetLength(IResolution, I + 1); IResolution[I] := IntToStr((modes^)^.w) + 'x' + IntToStr((modes^)^.h); Inc(I); - Inc(modes) + Inc(modes); Until (modes^)=nil; end; -- cgit v1.2.3