who knows

This commit is contained in:
Benjamin Morgan 2025-09-26 09:18:22 -06:00
parent 60d408a37c
commit f43544d15d
19 changed files with 2379 additions and 2063 deletions

6
Game.h
View file

@ -16,7 +16,7 @@ private:
sf::Texture loadingBarFull;
//update total
int totalTextures = 53;
int totalTextures = 58;
int loadedTextures = 0;
sf::Font oxan;
@ -231,7 +231,7 @@ private:
pewBuff.loadFromFile("data\\Sounds\\pew.wav");
updateLoader(window, "Loading sounds...");
pew.setBuffer(pewBuff);
pew.setVolume(25);
pew.setVolume(15);
Sound enemyBoom;
SoundBuffer enemyBoomBuff;
@ -952,8 +952,6 @@ private:
int spaceBetween = 150 - widthEntryDate;
int dateLoc = (window.getSize().x - (widthEntry + widthEntryDate + spaceBetween))/2;
cout << widthEntryDate << " " << widthEntry << " " << spaceBetween << endl;
highScoreEntriesDates[j].setPosition(dateLoc, window.getSize().y/1.8 + (25 * j));
highScoreEntries[j].setPosition(dateLoc + 150, window.getSize().y/1.8 + (25 * j));
}