WIP: handle labels more readably
Unfinished, but does this look sane?
See changes in regression/expected.
Changes in regression/expected are correct. I like how ASCII values are printed, but full numerical values looked better with dxXXXXXXXX
Changes in
regression/expectedare correct. I like how ASCII values are printed, but full numerical values looked better withdxXXXXXXXX
You mean the ones like "\12\34\56\78"? That's where the input NML happened to use all escaped bytes in a string-literal, e.g. in this case
// also override some other grf, this time not setting our own grfid explicitly
engine_override("\12\34\56\78");
I think this is probably helpful because it makes it clearer where the value came from, and that adding some heuristic would be confusing.
This should never affect numeric values that weren't strings in the source code.