Skip to content

Commit de996e6

Browse files
committed
feat: INFRA support
1 parent 313cc2f commit de996e6

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ cargo build --release
1616

1717
## Installation
1818

19-
Wasm file is at: `target/wasm32-unknown-unknown/release/sar_auto_splitter.wasm`
19+
Latest release is included in LiveSplit natively. See [LiveSplit.AutoSplitters](https://github.com/LiveSplit/LiveSplit.AutoSplitters/blob/master/LiveSplit.AutoSplitters.xml)
20+
21+
Wasm file is at: `target/wasm32-unknown-unknown/release/sar_auto_splitter.wasm`. Add to layout (Edit Layout -> Add -> Control -> Auto Splitting Runtime)
2022

2123
## Debugging
2224

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ async fn main() {
3333
timer::pause_game_time();
3434

3535
let process =
36-
retry(|| Process::attach("portal2.exe").or_else(|| Process::attach("portal2_linux")))
36+
retry(|| Process::attach("portal2.exe").or_else(|| Process::attach("portal2_linux")).or_else(|| Process::attach("infra.exe")))
3737
.await;
3838

3939
process

0 commit comments

Comments
 (0)