|
|
|
#1
|
||||
|
||||
|
Quote:
Quote:
But Given req. of min and recom. matches that of Steam page....
__________________
Um... My busy life.... Last edited by Prettyboy099; 05-10-2021 at 16:26. |
| Sponsored Links |
|
#2
|
||||
|
||||
|
Quote:
If you don't write the word build in the System= key line, the default value from the winverbuild= key will be read (see red color part code below). Code:
function GetSystemReq(Key, Section: String): Integer;
begin
case LowerCase(Key) of
'winvermajor' : Result := WindowsRequirimentsFromString(Section + 'SystemReq', Key, GetValInt(Section + 'SystemReq', Key, 0));
'winverminor' : Result := WindowsRequirimentsFromString(Section + 'SystemReq', Key, GetValInt(Section + 'SystemReq', Key, 0));
'winverbuild' : Result := WindowsRequirimentsFromString(Section + 'SystemReq', Key, GetValInt(Section + 'SystemReq', Key, 0));
'servicepack' : Result := WindowsRequirimentsFromString(Section + 'SystemReq', Key, GetValInt(Section + 'SystemReq', Key, 0));
'ram' : Result := Trunc(GetSizeBytes(GetValStr(Section + 'SystemReq', Key, ''), 0) / PowerK(1, POWER_MB));
'videoram' : Result := Trunc(GetSizeBytes(GetValStr(Section + 'SystemReq', Key, ''), 0) / PowerK(1, POWER_MB));
else
Result := GetValInt(Section + 'SystemReq', Key, 0);
end;
end;
See what it looks like if you include the CIU title option. ![]() >> Setup.ini changes: Code:
[SetupTitle] Left=56 Top=13 Font=cocogoose letterpress Visible=1 [SetupTitleAR] Left=56 Top=14 Font=cocogoose letterpress Visible=1 Last edited by Cesar82; 06-10-2021 at 09:18. |
| The Following 3 Users Say Thank You to Cesar82 For This Useful Post: | ||
![]() |
|
|