From ae7e4deb2fff2677abccaf4b0e4eaa31d86f4a23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sun, 29 Mar 2015 18:18:06 -0700 Subject: [PATCH] 08-update: Fixed debug build. --- examples/08-update/update.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/08-update/update.cpp b/examples/08-update/update.cpp index 0f962ea0..4c021e23 100644 --- a/examples/08-update/update.cpp +++ b/examples/08-update/update.cpp @@ -495,7 +495,10 @@ int _main_(int /*_argc*/, char** /*_argv*/) bgfx::destroyTexture(textureCube); bgfx::destroyIndexBuffer(ibh); bgfx::destroyVertexBuffer(vbh); - bgfx::destroyProgram(program3d); + if (bgfx::isValid(program3d) ) + { + bgfx::destroyProgram(program3d); + } bgfx::destroyProgram(programCmp); bgfx::destroyProgram(program); bgfx::destroyUniform(u_time);