Vulkan: Fix crash on EFB poke

This commit is contained in:
Stenzek 2016-11-14 20:19:59 +10:00
parent 6a2e1e9986
commit 89176fe2ab

View File

@ -103,6 +103,12 @@ bool FramebufferManager::Initialize()
return false;
}
if (!CompilePokeShaders())
{
PanicAlert("Failed to compile poke shaders");
return false;
}
return true;
}