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
|
R
|
||||||
else if str = "g" then
|
else if str = "g" then
|
||||||
G
|
G
|
||||||
else if str = "B" then
|
else if str = "b" then
|
||||||
B
|
B
|
||||||
else
|
else
|
||||||
case Real32.fromString str of
|
case Real32.fromString str of
|
||||||
|
|||||||
Reference in New Issue
Block a user