Skip to content
This repository was archived by the owner on Mar 31, 2023. It is now read-only.

Commit 8e634b2

Browse files
authored
Merge pull request #19 from TexKiller/patch-1
Fix texture path on Tutorial07
2 parents 38d58f4 + eeb6f36 commit 8e634b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Project/Tutorial07/Tutorial07.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ namespace ApiWithoutSecrets {
175175

176176
bool Tutorial07::CreateTexture() {
177177
int width = 0, height = 0, data_size = 0;
178-
std::vector<char> texture_data = Tools::GetImageData( "Data06/texture.png", 4, &width, &height, nullptr, &data_size );
178+
std::vector<char> texture_data = Tools::GetImageData( "Data07/texture.png", 4, &width, &height, nullptr, &data_size );
179179
if( texture_data.size() == 0 ) {
180180
return false;
181181
}

0 commit comments

Comments
 (0)