Skip to content

Commit

Permalink
Updated website url + bump version to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbal committed Apr 23, 2024
1 parent eeac0c2 commit a6b36b0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cpp/MenuIndex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cpp/ScreenDebug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) +
Expand Down
2 changes: 1 addition & 1 deletion Cpp/ScreenScore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
4 changes: 2 additions & 2 deletions Cpp/headers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"



Expand Down Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit a6b36b0

Please sign in to comment.