From eeb6f36ca626470497c30dea1ca791c114005ddf Mon Sep 17 00:00:00 2001 From: TexKiller Date: Thu, 9 Mar 2017 05:00:43 -0300 Subject: [PATCH] Fix texture path on Tutorial07 Changing Data06 to Data07 in texture path. --- Project/Tutorial07/Tutorial07.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project/Tutorial07/Tutorial07.cpp b/Project/Tutorial07/Tutorial07.cpp index e4e6078..fdc6876 100644 --- a/Project/Tutorial07/Tutorial07.cpp +++ b/Project/Tutorial07/Tutorial07.cpp @@ -175,7 +175,7 @@ namespace ApiWithoutSecrets { bool Tutorial07::CreateTexture() { int width = 0, height = 0, data_size = 0; - std::vector texture_data = Tools::GetImageData( "Data06/texture.png", 4, &width, &height, nullptr, &data_size ); + std::vector texture_data = Tools::GetImageData( "Data07/texture.png", 4, &width, &height, nullptr, &data_size ); if( texture_data.size() == 0 ) { return false; }