mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-02-03 13:03:22 +00:00
Thunks/libvulkan: Fixes print for 32-bit
Value passed in to this print will be 32-bit or 64-bit depending on arch. Noticed this while tinkering around and is easy enough to solve today.
This commit is contained in:
parent
6742e0c376
commit
691e39ec76
@ -56,7 +56,7 @@ static PFN_vkVoidFunction MakeGuestCallable(const char* origin, PFN_vkVoidFuncti
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
fprintf(stderr, "Linking address %p to host invoker %#lx\n", func, It->second);
|
||||
fprintf(stderr, "Linking address %p to host invoker %#zx\n", func, It->second);
|
||||
LinkAddressToFunction((uintptr_t)func, It->second);
|
||||
return func;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user