From b41cb87b41d152d0d64b1e8a7bd7c5e8d964c15b Mon Sep 17 00:00:00 2001 From: Humza Shahid Date: Sun, 29 Dec 2024 20:27:48 +0000 Subject: [PATCH] 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) --- dotscape | Bin 1182368 -> 1182368 bytes functional-core/file/parse-file.sml | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/dotscape b/dotscape index 7e04700ab36e79d5d2cf377f852f54e5018992a1..bfc13467b9de9d8c31db121f8371cdf8b0063985 100755 GIT binary patch delta 109 zcmZ25)nma_j}2FtM5MBv#Flh)aI9{d|Ig~Y({#qa{Nin9JZ)yYZDxFJX8dht0^7_47hC}V?Kdh; diff --git a/functional-core/file/parse-file.sml b/functional-core/file/parse-file.sml index 77ac6c9..df90204 100644 --- a/functional-core/file/parse-file.sml +++ b/functional-core/file/parse-file.sml @@ -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