Stringise VkFlagWithNoBits as 0 instead of empty string

This commit is contained in:
baldurk
2018-02-14 22:35:50 +00:00
parent 453b4e7d6e
commit 80128f8e9f
+1 -1
View File
@@ -199,7 +199,7 @@ std::string DoStringise(const VkFlagWithNoBits &el)
{
if(el != 0)
return StringFormat::Fmt("Invalid bits set: %x", el);
return "";
return "0";
}
template <>