diff --git a/Cpp/MenuIndex.cpp b/Cpp/MenuIndex.cpp index 942d3d0..dae70d6 100644 --- a/Cpp/MenuIndex.cpp +++ b/Cpp/MenuIndex.cpp @@ -5,7 +5,7 @@ using namespace sf; MenuIndex::MenuIndex(sf::Vector2i * window_size,char * state) : Menu(window_size,state), - lien(sf::Text(), "http://sfmltetris.pandacube.fr/") + lien(sf::Text(), "http://sfmltetris.mbaloup.fr/") { // tecture et sprite sont pour l'image du jeu diff --git a/Cpp/ScreenDebug.cpp b/Cpp/ScreenDebug.cpp index 0186c5b..8f6be23 100644 --- a/Cpp/ScreenDebug.cpp +++ b/Cpp/ScreenDebug.cpp @@ -86,7 +86,7 @@ void ScreenDebug::update() - _debug_info.setString("SFML Tetris "+string(VERSION)+" - Par Marc Baloup et Louis Behague - http://sfmltetris.pandacube.fr/\nUptime : "+ + _debug_info.setString("SFML Tetris "+string(VERSION)+" - Par Marc Baloup et Louis Behague - http://sfmltetris.mbaloup.fr/\nUptime : "+ uptime+ " - FPS : "+to_string(framerate) + " - Particules : "+ to_string(ExplosionManager::_nbParticules) + diff --git a/Cpp/ScreenScore.cpp b/Cpp/ScreenScore.cpp index 2ac6b18..1b9caf1 100644 --- a/Cpp/ScreenScore.cpp +++ b/Cpp/ScreenScore.cpp @@ -6,7 +6,7 @@ ScreenScore::ScreenScore(sf::Vector2i * window_size, char *state, Scores * scores) : Menu(window_size, state), scoreTable(255/20+1), - lien(sf::Text(), "http://sfmltetris.pandacube.fr/scores.php") + lien(sf::Text(), "http://sfmltetris.mbaloup.fr/scores.php") { _scores = scores; diff --git a/Cpp/headers.hpp b/Cpp/headers.hpp index bcf7a8b..4b8c07d 100644 --- a/Cpp/headers.hpp +++ b/Cpp/headers.hpp @@ -43,7 +43,7 @@ #define DEBUG_NB_CHAR_WIDTH 100 #define DEBUG_NB_CHAR_HEIGHT 30 #define DEBUG_CHAR_SIZE 13 -#define VERSION "v1.0.1" +#define VERSION "v1.0.2" @@ -100,7 +100,7 @@ // ScoreWebSender -#define SERVER_ADDR "sfmltetris.pandacube.fr" +#define SERVER_ADDR "sfmltetris.mbaloup.fr" #define SERVER_PORT 80 #define SERVER_QUERY "/post_score.php" diff --git a/README.md b/README.md index 8507704..c9ee283 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A Tetris game made in C++ with the [SFML library](https://www.sfml-dev.org/index.php). It was a project for an IT university course in 2014 (DUT Informatique, IUT de Lens, Université d’Artois). -Website : http://sfmltetris.pandacube.fr/ +Website : http://sfmltetris.mbaloup.fr/ ## Contributors