Rename to septadrop

This commit is contained in:
Elnu 2022-03-11 11:51:46 -08:00
parent 186fb78a0b
commit 4ed0a1a841
5 changed files with 6 additions and 6 deletions

View file

@ -29,7 +29,7 @@ int main()
{
srand(time(NULL));
sf::RenderWindow window(sf::VideoMode(WINDOW_WIDTH, WINDOW_HEIGHT), "elnutris", sf::Style::Close);
sf::RenderWindow window(sf::VideoMode(WINDOW_WIDTH, WINDOW_HEIGHT), "septadrop", sf::Style::Close);
window.setFramerateLimit(60);
window.setKeyRepeatEnabled(false); // prevent keys from retriggering when held
@ -79,7 +79,7 @@ int main()
}
std::string highscore_file_path = homedir;
highscore_file_path += "/.elnutris";
highscore_file_path += "/.septadrop";
if (!std::filesystem::exists(highscore_file_path)) {
std::ofstream highscore_file(highscore_file_path);