This commit is contained in:
Valentino Orlandi 2022-11-24 22:29:50 +01:00
parent 7289d45e7e
commit 2f50493015
Signed by: elB4RTO
GPG Key ID: 1719E976DB2D4E71
2 changed files with 4 additions and 4 deletions

View File

@ -1973,7 +1973,7 @@ void MainWindow::menu_actionSnake_triggered()
} else {
delete this->snake;
this->snake = new Snake( this->window_theme_id, this->FONTS.at("script") );
this->snake = new SnakeGame( this->window_theme_id, this->FONTS.at("script") );
this->snake->show();
}
}

View File

@ -24,8 +24,8 @@
#include "tools/crapnote/crapnote.h"
#include "games/crisscross.h"
#include "games/snake.h"
#include "games/crisscross/game.h"
#include "games/snake/game.h"
QT_BEGIN_NAMESPACE
@ -863,7 +863,7 @@ private:
CrissCross* crisscross = new CrissCross( 0 );
Snake* snake = new Snake( 0, QFont() );
SnakeGame* snake = new SnakeGame( 0, QFont() );
};
#endif // MAINWINDOW_H