aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/audio_asm.asm
diff options
context:
space:
mode:
authorJan <sentrycraft123@gmail.com>2023-11-23 18:53:04 +0100
committerGitHub <noreply@github.com>2023-11-23 18:53:04 +0100
commitcfc53081ff38a7a0e29cc0b89644760a7ade33a1 (patch)
treef0b00aa5c06151da8c93f9c3dd9d7f167564b689 /NorthstarDLL/audio_asm.asm
parent17217a39681c7fed35bee95195bdba7eaf508911 (diff)
downloadNorthstarLauncher-cfc53081ff38a7a0e29cc0b89644760a7ade33a1.tar.gz
NorthstarLauncher-cfc53081ff38a7a0e29cc0b89644760a7ade33a1.zip
Replace audio event fetching with hook (#603)
Takes the previous audio event code, which relied on reading out a register using masm, and replaces it with a new hook. Adapted from NorthstarPrime https://github.com/F1F7Y/NorthstarPrime Co-authored-by: F1F7Y <filip.bartos07@proton.me>
Diffstat (limited to 'NorthstarDLL/audio_asm.asm')
-rw-r--r--NorthstarDLL/audio_asm.asm8
1 files changed, 0 insertions, 8 deletions
diff --git a/NorthstarDLL/audio_asm.asm b/NorthstarDLL/audio_asm.asm
deleted file mode 100644
index 1b2d3f8d..00000000
--- a/NorthstarDLL/audio_asm.asm
+++ /dev/null
@@ -1,8 +0,0 @@
-public Audio_GetParentEvent
-
-.code
-Audio_GetParentEvent proc
- mov rax, r12
- ret
-Audio_GetParentEvent endp
-end