diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c7ca27..278ce62 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) project(snek - VERSION 1.0.2 + VERSION 1.1.0 DESCRIPTION "SNEK - A simple snake clone, playable in the commandline with some unique game modes." HOMEPAGE_URL "https://github.com/MCWertGaming/snek" LANGUAGES CXX) diff --git a/src/snake.cpp b/src/snake.cpp index 835f4ec..3e58049 100644 --- a/src/snake.cpp +++ b/src/snake.cpp @@ -282,7 +282,7 @@ void snake::snake::animateWatermark() if (consoleSupportsColors) attron(COLOR_PAIR(redText)); - mvprintw(3,screen[0] + 2, "by MCWertGaming"); + mvprintw(3,screen[0] + 2, "by BlackVyperStudios"); refresh(); timer.reset(); while (!timer.done()); @@ -303,7 +303,7 @@ void snake::snake::drawWatermark() mvprintw(2,screen[0] + 2, "Version: %d.%d.%d", SNAKE_VERSION_MAJOR, SNAKE_VERSION_MINOR, SNAKE_VERSION_PATCH); if (consoleSupportsColors) attron(COLOR_PAIR(redText)); - mvprintw(3,screen[0] + 2, "by MCWertGaming"); + mvprintw(3,screen[0] + 2, "by BlackVyperStudios"); if (consoleSupportsColors) attroff(COLOR_PAIR(blueBackground)); }