diff --git a/CMakeLists.txt b/CMakeLists.txt index 775bad9..38058e9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -set(ProjectName "elnutris") +set(ProjectName "septadrop") cmake_minimum_required(VERSION 3.10) set(CMAKE_CXX_STANDARD 20) diff --git a/README.md b/README.md index 629b66f..52f8a0e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# elnutris +# septadrop A Tetris clone made in C++ and [SFML](https://www.sfml-dev.org/). diff --git a/build/README.md b/build/README.md index 4c8d5e5..8f6be0b 100644 --- a/build/README.md +++ b/build/README.md @@ -16,5 +16,5 @@ To compile and run: To run: ``` -./elnutris +./septadrop ``` diff --git a/build/run.sh b/build/run.sh index 7bfb8de..ed46cfd 100755 --- a/build/run.sh +++ b/build/run.sh @@ -1,2 +1,2 @@ ./build.sh -./elnutris \ No newline at end of file +./septadrop \ No newline at end of file diff --git a/src/Main.cpp b/src/Main.cpp index 670bb93..e406575 100644 --- a/src/Main.cpp +++ b/src/Main.cpp @@ -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);