vulkan dummy assert fix

This commit is contained in:
Turánszki János
2022-08-25 17:28:55 +02:00
parent 6eb01f585a
commit e9debd0487
2 changed files with 1 additions and 3 deletions
-2
View File
@@ -5754,7 +5754,6 @@ using namespace vulkan_internal;
view_desc.subresourceRange.aspectMask = VK_IMAGE_ASPECT_DEPTH_BIT;
break;
default:
assert(0);
break;
}
@@ -5883,7 +5882,6 @@ using namespace vulkan_internal;
view_desc.subresourceRange.aspectMask |= VK_IMAGE_ASPECT_STENCIL_BIT;
break;
default:
assert(0);
break;
}
+1 -1
View File
@@ -9,7 +9,7 @@ namespace wi::version
// minor features, major updates, breaking compatibility changes
const int minor = 71;
// minor bug fixes, alterations, refactors, updates
const int revision = 25;
const int revision = 26;
const std::string version_string = std::to_string(major) + "." + std::to_string(minor) + "." + std::to_string(revision);