mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Fix build error
This commit is contained in:
parent
b3e18d130f
commit
87676b534d
|
@ -148,10 +148,12 @@ fn load_rom<P: AsRef<Path>>(path: P) -> anyhow::Result<Vec<u8>> {
|
||||||
|
|
||||||
let mut elf_buffer = Vec::new();
|
let mut elf_buffer = Vec::new();
|
||||||
|
|
||||||
|
let inculde_debug_info = false;
|
||||||
if agb_gbafix::write_gba_file(
|
if agb_gbafix::write_gba_file(
|
||||||
&input_file_buffer,
|
&input_file_buffer,
|
||||||
Default::default(),
|
Default::default(),
|
||||||
agb_gbafix::PaddingBehaviour::DoNotPad,
|
agb_gbafix::PaddingBehaviour::DoNotPad,
|
||||||
|
inculde_debug_info,
|
||||||
&mut elf_buffer,
|
&mut elf_buffer,
|
||||||
)
|
)
|
||||||
.is_ok()
|
.is_ok()
|
||||||
|
|
Loading…
Reference in a new issue