From 456ef11200f2679bcecd07d72e571aee7e8c1869 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Thu, 8 Dec 2011 12:31:42 +0100 Subject: [PATCH] [linux] Fixed build error --- yg/resource_manager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/yg/resource_manager.cpp b/yg/resource_manager.cpp index b85ec5d2c7..f50d227f58 100644 --- a/yg/resource_manager.cpp +++ b/yg/resource_manager.cpp @@ -47,6 +47,7 @@ namespace yg case yg::Data4Bpp: return shared_ptr(new gl::Texture(m_w, m_h)); case yg::Data8Bpp: + default: return shared_ptr(new gl::Texture(m_w, m_h)); } }