mirror of
https://github.com/opus-tango/IntroductionToVulkan.git
synced 2026-03-20 12:05:20 +00:00
Fix texture path on Tutorial07
Changing Data06 to Data07 in texture path.
This commit is contained in:
@@ -175,7 +175,7 @@ namespace ApiWithoutSecrets {
|
||||
|
||||
bool Tutorial07::CreateTexture() {
|
||||
int width = 0, height = 0, data_size = 0;
|
||||
std::vector<char> texture_data = Tools::GetImageData( "Data06/texture.png", 4, &width, &height, nullptr, &data_size );
|
||||
std::vector<char> texture_data = Tools::GetImageData( "Data07/texture.png", 4, &width, &height, nullptr, &data_size );
|
||||
if( texture_data.size() == 0 ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user