3.9.0.3422
This commit is contained in:
parent
630e682b5f
commit
acc59f9c87
|
|
@ -15,7 +15,7 @@ internal static class RevisionClass
|
|||
public const string Major = "3";
|
||||
public const string Minor = "9";
|
||||
public const string Build = "0";
|
||||
public const string Revision = "3421";
|
||||
public const string Revision = "3422";
|
||||
|
||||
public const string MainVersion = Major + "." + Minor;
|
||||
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
%MINOR%=9
|
||||
%REVISION%=3421
|
||||
%COREVERSION%=0
|
||||
%REVISION%=3422
|
||||
%MINOR%=9
|
||||
%MAJOR%=3
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
3.9.0.3421
|
||||
3.9.0.3422
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!define VERSION '3.9.0.3421'
|
||||
!define VERSION '3.9.0.3422'
|
||||
|
|
|
|||
|
|
@ -185,9 +185,9 @@ function ReadKey: char;// TODO продумать это
|
|||
var
|
||||
KeyInfo: ConsoleKeyInfo;
|
||||
begin
|
||||
if NextKey <> Chr(0) then
|
||||
if NextKey <> #0 then
|
||||
begin
|
||||
ReadKey := nextkey;
|
||||
ReadKey := NextKey;
|
||||
NextKey := #0;
|
||||
end
|
||||
else
|
||||
|
|
@ -202,7 +202,7 @@ end;
|
|||
|
||||
function KeyPressed: boolean;
|
||||
begin
|
||||
KeyPressed := Console.KeyAvailable;
|
||||
KeyPressed := (NextKey <> #0) or Console.KeyAvailable;
|
||||
end;
|
||||
|
||||
function WindowWidth: integer;
|
||||
|
|
@ -330,4 +330,4 @@ end;
|
|||
begin
|
||||
//zdes oshibka ISConsoleApplication u nas nikogda ne inicializiruetsja
|
||||
__InitModule;
|
||||
end.
|
||||
end.
|
||||
|
|
|
|||
Loading…
Reference in a new issue