1

Is it a double slash (//) that disables a line in an ini file?

For example:

[SystemSettings]
r.SceneColorFringeQuality=0 
// r.MotionBlur.Max=0  //

Or would this be correct?

[SystemSettings]
r.SceneColorFringeQuality=0 
; r.MotionBlur.Max=0
Henry Ecker
  • 34,399
  • 18
  • 41
  • 57
  • 1
    Does this answer your question? [Do standard windows .ini files allow comments?](https://stackoverflow.com/questions/1378219/do-standard-windows-ini-files-allow-comments) – Sasha Jan 01 '22 at 04:39
  • Depends on what you're using to parse that file. Usually, the second one will work. – brc-dd Jan 01 '22 at 04:43

1 Answers1

0

Backslash is: \

Forward slash is: /

Comments in .ini file start with # or ;

Reference: https://en.wikipedia.org/wiki/INI_file

Ron
  • 5,900
  • 2
  • 20
  • 30