mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-02 22:01:41 +00:00
- fixed bad use of local variable.
This commit is contained in:
parent
35f8aab6bf
commit
9002cdb61d
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ void VulkanDevice::CreateDevice()
|
|||
if (SupportsDeviceExtension(VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME))
|
||||
{
|
||||
*next = &deviceFeatures2;
|
||||
void** next = &deviceFeatures2.pNext;
|
||||
next = &deviceFeatures2.pNext;
|
||||
}
|
||||
else // vulkan 1.0 specified features in a different way
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue