Skip to content

Commit

Permalink
Merge pull request #2009 from Sonicadvance1/libvulkan_fix_print
Browse files Browse the repository at this point in the history
Thunks/libvulkan: Fixes print for 32-bit
  • Loading branch information
Sonicadvance1 committed Sep 25, 2022
2 parents cc4c705 + 691e39e commit d8c2a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ThunkLibs/libvulkan/Guest.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit d8c2a82

Please sign in to comment.