vulkan: fix typo in error message

This commit is contained in:
Sasha Szpakowski
2024-09-07 17:35:15 -03:00
parent 26a7389a4d
commit 6c67835b6a
+1 -1
View File
@@ -782,7 +782,7 @@ VkDescriptorType Vulkan::getDescriptorType(graphics::Shader::UniformType type)
case graphics::Shader::UniformType::UNIFORM_STORAGEBUFFER:
return VK_DESCRIPTOR_TYPE_STORAGE_BUFFER;
default:
throw love::Exception("unkonwn uniform type");
throw love::Exception("unknown uniform type");
}
}