From 02edf0302de629caa3acaa8a1c8a4e56ad65fdb2 Mon Sep 17 00:00:00 2001 From: Chris Cascioli Date: Mon, 10 Jan 2022 23:04:45 -0500 Subject: [PATCH] Fixed up a few init warnings --- Game.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Game.cpp b/Game.cpp index d80ef1f..1bdf45b 100644 --- a/Game.cpp +++ b/Game.cpp @@ -189,7 +189,7 @@ void Game::CreateBasicGeometry() // Create the proper struct to hold the initial vertex data // - This is how we put the initial data into the buffer - D3D11_SUBRESOURCE_DATA initialVertexData; + D3D11_SUBRESOURCE_DATA initialVertexData = {}; initialVertexData.pSysMem = vertices; // Actually create the buffer with the initial data @@ -211,7 +211,7 @@ void Game::CreateBasicGeometry() // Create the proper struct to hold the initial index data // - This is how we put the initial data into the buffer - D3D11_SUBRESOURCE_DATA initialIndexData; + D3D11_SUBRESOURCE_DATA initialIndexData = {}; initialIndexData.pSysMem = indices; // Actually create the buffer with the initial data