Skip to content

Commit

Permalink
windows 514.1561 support
Browse files Browse the repository at this point in the history
  • Loading branch information
willox committed Aug 10, 2021
1 parent 15488a9 commit 42d4a03
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion auxtools/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,9 @@ byond_ffi_fn! { auxtools_init(_input) {
{
if cfg!(windows) {
let res =
if version::get().1 >= 1543 {
if version::get().1 >= 1561 {
byondcore.find(signature!("55 8B EC 6A FF 68 ?? ?? ?? ?? 64 A1 ?? ?? ?? ?? 50 83 EC 18 53 56 57 A1 ?? ?? ?? ?? 33 C5 50 8D 45 ?? 64 A3 ?? ?? ?? ?? 8B 4D ?? 0F B6 C1"))
} else if version::get().1 >= 1543 {
byondcore.find(signature!("55 8B EC 6A FF 68 ?? ?? ?? ?? 64 A1 ?? ?? ?? ?? 50 83 EC 14 53 56 57 A1 ?? ?? ?? ?? 33 C5 50 8D 45 ?? 64 A3 ?? ?? ?? ?? 8B 4D ??"))
} else {
byondcore.find(signature!("55 8B EC 6A FF 68 ?? ?? ?? ?? 64 A1 ?? ?? ?? ?? 50 83 EC 10 53 56 57 A1 ?? ?? ?? ?? 33 C5 50 8D 45 ?? 64 A3 ?? ?? ?? ?? 8B 5D ?? 0F B6 C3"))
Expand Down

0 comments on commit 42d4a03

Please sign in to comment.