aboutsummaryrefslogtreecommitdiffstats
path: root/Game
diff options
context:
space:
mode:
Diffstat (limited to 'Game')
-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;