How do I get rid of that colour filter on the steam version? I much prefer the plain black of older versions.
E: Searched the thread, found mention of the display text file, managed to turn off the scanlines but that's only half of the issue. I see hexadecimals but I'm not sure what values I would need to tweak to fix my problem. Any ideas?
Would you mind putting an option to disable the cosmetic filters into the options menu, unormal? Entirely for the less patient individuals that might be tempted to ask for a refund after only a cursory look for an off switch
Well, it's not a filter that's changing the colors, the colors themselves are just set in display.txt;
K-black, R-red, C-cyan, M-magenta, etc; They are the characters we use in the in-game markup to specify colors.
If you want to change the black to raw black, just change the value of "kl" to "000000"
If you want to change all the old colors back to ascii it'd be something like (Though this is off the top of my head so the 7 might be a little dark or light and instead need to be 6s or 8s)
"colors":{
"r":"770000",
"R":"FF0000",
"g":"007700",
"G":"00FF00",
"b":"0000ff",
"B":"0000FF",
"c":"007777",
"C":"0077FF",
"m":"770077",
"M":"FF00FF",
"w":"007777",
"W":"00FFFF",
"k":"444444",
"K":"000000",
"y":"777777",
"Y":"FFFFFF",
"o":"f15f22",
"O":"e99f10"
},
You can copy display.txt out to your save path so it doesn't get stomped by steam updates if you want.