Improve the shader error console output

This makes the line gutter look more like an actual line gutter,
which makes it less confusing.
This commit is contained in:
Hugo Locurcio 2020-04-04 14:27:44 +02:00
parent ea48b403a9
commit 5fae0c454a
No known key found for this signature in database
GPG key ID: 39E8F8BE30B0A49C

View file

@ -647,13 +647,13 @@ String String::camelcase_to_underscore(bool lowercase) const {
}
String String::get_with_code_lines() const {
Vector<String> lines = split("\n");
const Vector<String> lines = split("\n");
String ret;
for (int i = 0; i < lines.size(); i++) {
if (i > 0) {
ret += "\n";
}
ret += itos(i + 1) + " " + lines[i];
ret += vformat("%4d | %s", i + 1, lines[i]);
}
return ret;
}