Georg Lehmann (@DadSchoorse) commented about dlls/winevulkan/vulkan.c:
struct wine_device *device = wine_device_from_handle(handle); struct wine_device_memory *memory = wine_device_memory_from_handle(unmap_info->memory); VkMemoryUnmapInfoKHR info;
- VkResult result;
- if (memory->mapping)
if (memory->mapping && device->phys_dev->external_memory_align) return VK_SUCCESS;
if (!device->funcs.p_vkUnmapMemory2KHR) { assert(!unmap_info->pNext);
```suggestion:-0+0 assert(!unmap_info->pNext && !memory->mapping); ```