Track API changes. - icy_draw - icy_draw is the successor to mystic draw. fork / mirror
HTML git clone https://git.drkhsh.at/icy_draw.git
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 7bd19d285c06acf91f2c41c268e1cd4c2ba5d232
DIR parent 2f9872cf4f4dc387e52499f73f4ec796b3030147
HTML Author: Mike Krüger <mkrueger@posteo.de>
Date: Fri, 22 Sep 2023 08:22:44 +0200
Track API changes.
Diffstat:
M src/ui/editor/charfont/mod.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/src/ui/editor/charfont/mod.rs b/src/ui/editor/charfont/mod.rs
@@ -647,7 +647,7 @@ impl CharFontEditor {
for x in 0..lw {
let ch = buf.get_char((x, y));
data.push(ch.ch as u8);
- data.push(ch.attribute.as_u8());
+ data.push(ch.attribute.as_u8(icy_engine::IceMode::Ice));
}
w = w.max(lw);
h = y;