When saving to an INI file, especially when more than one section is defined, the data is saved all together with no lines between the sections.
For external editing purposes it would be handy to separate each section with a line break, to make it easier to view and edit the INI file.
For Example:
Standard Ini
[GENERAL]
value1=0
value2=somestring
[ADVANCED]
type=1
autosave=0
[OTHER]
showatstartup=1
Ini with seperating lines
[GENERAL]
value1=0
value2=somestring
[ADVANCED]
type=1
autosave=0
[OTHER]
showatstartup=1
How can this be done?