Patch update - Texture fix + Exe fix

[FIX] :

~ Modification des textures bath et water
~ Ajouts des fichier pour le exe
This commit is contained in:
2024-04-26 14:03:53 +02:00
parent b284fb1805
commit 3bb1f095c1
4 changed files with 51 additions and 29 deletions

View File

@@ -267,7 +267,8 @@ bool ApplicationClass::Initialize(int screenWidth, int screenHeight, HWND hwnd)
// Set the file names of the bath model.
strcpy_s(modelFilename, "bath.txt");
Filename.push_back("marble01.tga");
// replace first element with the new filename
Filename[0] = "marble01.tga";
// Create and initialize the bath model object.
m_BathModel = new ModelClass;
@@ -281,7 +282,8 @@ bool ApplicationClass::Initialize(int screenWidth, int screenHeight, HWND hwnd)
// Set the file names of the water model.
strcpy_s(modelFilename, "water.txt");
Filename.push_back("water01.tga");
// replace first element with the new filename
Filename[0] = "water01.tga";
// Create and initialize the water model object.
m_WaterModel = new ModelClass;