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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user