Skip to content

Commit

Permalink
Allow exporting tilemaps and tilesets as PNG (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
kelpsyberry committed Apr 17, 2024
1 parent c090910 commit 82282ac
Show file tree
Hide file tree
Showing 6 changed files with 1,063 additions and 499 deletions.
42 changes: 42 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/src/ds_slot/rom.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl Contents for BoxedByteSlice {
fn as_any(&self) -> &dyn Any {
self
}

fn as_any_mut(&mut self) -> &mut dyn Any {
self
}
Expand Down
2 changes: 2 additions & 0 deletions frontend/desktop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ log = ["logging", "dust-core/log"]
debug-views = [
"imgui-memory-editor",
"realfft",
"png",
"dust-core/disasm",
"dust-core/channel-audio-capture",
]
Expand Down Expand Up @@ -62,6 +63,7 @@ crossbeam-channel = "0.5"
parking_lot = "0.12"
bitflags = "2.5"
miniz_oxide = { version = "0.7", features = ["simd"] }
png = { version = "0.17", optional = true }
fatfs = { version = "0.3", optional = true }
tempfile = { version = "3.10", optional = true }
proc-bitfield = { version = "0.4", features = ["nightly"] }
Expand Down
Loading

0 comments on commit 82282ac

Please sign in to comment.