fix error trying to parse rgb colour data from file (have tested the change works; error was that code was meant to parse 'b' but was parsing 'B' instead)

This commit is contained in:
2024-12-29 20:27:48 +00:00
parent 7c2cc66b5a
commit b41cb87b41
2 changed files with 1 additions and 1 deletions

BIN
dotscape

Binary file not shown.

View File

@@ -83,7 +83,7 @@ struct
R
else if str = "g" then
G
else if str = "B" then
else if str = "b" then
B
else
case Real32.fromString str of