Skip to content

Commit

Permalink
handle new core changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Eein committed Jun 3, 2023
1 parent 1fc4763 commit 33eb465
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@ async fn main() {
"linux" => Process::wait_attach("LIVEALIVE-Win64").await,
_ => Process::wait_attach("LIVEALIVE-Win64-Shipping.exe").await
};
let (main_module_base, main_module_size) = process
let (main_module_base, _main_module_size) = process
.wait_module_range("LIVEALIVE-Win64-Shipping.exe")
.await;

asr::print_message(&main_module_size.to_string());

process
.until_closes(async {
// TODO: Load some initial information from the process.
Expand Down

0 comments on commit 33eb465

Please sign in to comment.