diff --git a/2.5DHero/2.5DHero/Overworld/BackdropRenderer.vb b/2.5DHero/2.5DHero/Overworld/BackdropRenderer.vb index 40f50db6a..c22ecd8c7 100644 --- a/2.5DHero/2.5DHero/Overworld/BackdropRenderer.vb +++ b/2.5DHero/2.5DHero/Overworld/BackdropRenderer.vb @@ -172,7 +172,8 @@ pass.Apply() GraphicsDevice.SetVertexBuffer(vBuffer) GraphicsDevice.Indices = iBuffer - GraphicsDevice.DrawIndexedPrimitives(PrimitiveType.TriangleList, 0, 0, _vertices.Count, 0, Indicies.Count) + 'GraphicsDevice.DrawIndexedPrimitives(PrimitiveType.TriangleList, 0, 0, _vertices.Count, 0, Indicies.Count) + GraphicsDevice.DrawIndexedPrimitives(PrimitiveType.TriangleList, 0, 0, _vertices.Count) Next End Sub