- fix shutdown crash and some minor adjustments

This commit is contained in:
Magnus Norddahl 2019-03-02 00:46:25 +01:00
commit 1430d9012e
4 changed files with 21 additions and 12 deletions

View file

@ -22,7 +22,7 @@ public:
bool operator<(const VkRenderPassKey &other) const
{
return memcmp(this, &other, sizeof(VkRenderPassKey));
return memcmp(this, &other, sizeof(VkRenderPassKey)) < 0;
}
};