OSX: Fixed build.

This commit is contained in:
Branimir Karadžić 2016-03-13 16:49:10 -07:00
parent 7b6c2e85d5
commit 4a7e22ef60

View file

@ -661,7 +661,6 @@ namespace bgfx { namespace mtl
bx::write(&writer, magic);
TextureCreate tc;
tc.m_flags = texture.m_flags;
tc.m_width = _width;
tc.m_height = _height;
tc.m_sides = 0;
@ -673,7 +672,7 @@ namespace bgfx { namespace mtl
bx::write(&writer, tc);
texture.destroy();
texture.create(mem, tc.m_flags, 0);
texture.create(mem, texture.m_flags, 0);
release(mem);
}