Skip to content

Commit

Permalink
Fix trampoline
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Feb 15, 2024
1 parent e017838 commit 998696e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/axi-trampoline/src/bin/axi-trampoline-console.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
// build.rs passes a custom linker flag to make this the entrypoint to the executable
#[no_mangle]
pub extern "C" fn entry() -> ! {
puffin_trampoline::bounce::bounce(false)
axi_trampoline::bounce::bounce(false)
}
2 changes: 1 addition & 1 deletion crates/axi-trampoline/src/bin/axi-trampoline-gui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
// build.rs passes a custom linker flag to make this the entrypoint to the executable
#[no_mangle]
pub extern "C" fn entry() -> ! {
puffin_trampoline::bounce::bounce(true)
axi_trampoline::bounce::bounce(true)
}

0 comments on commit 998696e

Please sign in to comment.