View Single Post
  #1  
Old 26-07-2020, 03:30
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,336 Times in 2,838 Posts
KaktoR is on a distinguished road
Line 4482, search for this and add the red parts

Code:
#if CompactMode == "1"
  #if INIValue == ""
    SetIniString('{#INISection}', '{#INIKey}', ExpandConstant('{username}'), ExpandConstant('{#INIFile}'));
    SetIniString('{#INISection}', '{#INIKey}', ExpandConstant('{username}'), ExpandConstant('{app}\INIFile2.ini'));
  #else
    SetIniString('{#INISection}', '{#INIKey}', '{#INIValue}', ExpandConstant('{#INIFile}'));
    SetIniString('{#INISection}', '{#INIKey}', '{#INIValue}', ExpandConstant('{app}\INIFile2.ini'));
  #endif
#else
  SetIniString('{#INISection}', '{#INIKey}', WizardForm.UserInfoNameEdit.Text, ExpandConstant('{#INIFile}'));
  SetIniString('{#INISection}', '{#INIKey}', WizardForm.UserInfoNameEdit.Text, ExpandConstant('{app}\INIFile2.ini'));
#endif
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
Titeuf (26-07-2020)
Sponsored Links