Skip to content

Commit

Permalink
preparing for merge into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexgamer470 committed Nov 16, 2020
1 parent 97d04fb commit f3d82b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions src/snake.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand All @@ -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));
}
Expand Down

0 comments on commit f3d82b8

Please sign in to comment.