aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwhiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-11-21 18:31:32 +0000
committerwhiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-11-21 18:31:32 +0000
commit1e7ce87e239f909da68dfb46dfa2b825202fcdbe (patch)
tree37c866941d354346597636b9eaaefb9ee14e45b6
parent4123c655bc0cdc48e536e256637b8b89d7fa839b (diff)
downloadusdx-1e7ce87e239f909da68dfb46dfa2b825202fcdbe.tar.gz
usdx-1e7ce87e239f909da68dfb46dfa2b825202fcdbe.tar.xz
usdx-1e7ce87e239f909da68dfb46dfa2b825202fcdbe.zip
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
-rw-r--r--Game/Code/Classes/UIni.pas4
1 files changed, 2 insertions, 2 deletions
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;