Compile fix for x64

This commit is contained in:
baldurk
2016-04-27 22:54:51 +02:00
parent 32114f947f
commit 05f1b2344c
@@ -525,7 +525,7 @@ bool WrappedVulkan::Serialise_vkCreateDevice(
Layers.push_back("VK_LAYER_LUNARG_standard_validation");
#endif
createInfo.enabledLayerCount = Layers.size();
createInfo.enabledLayerCount = (uint32_t)Layers.size();
const char **layerArray = NULL;
if(!Layers.empty())