no resize
This commit is contained in:
parent
88f9e85b88
commit
19e293b238
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ Game* Game::i() {
|
||||||
// Main game loop
|
// Main game loop
|
||||||
void Game::run() {
|
void Game::run() {
|
||||||
sf::Clock c;
|
sf::Clock c;
|
||||||
sf::RenderWindow window(sf::VideoMode(W_WIDTH, W_HEIGHT), "( ( ( Radio Waves ) ) )");
|
sf::RenderWindow window(sf::VideoMode(W_WIDTH, W_HEIGHT), "( ( ( Radio Waves ) ) )", sf::Style::Close);
|
||||||
window.setKeyRepeatEnabled(false);
|
window.setKeyRepeatEnabled(false);
|
||||||
float oldTime = c.getElapsedTime().asSeconds();
|
float oldTime = c.getElapsedTime().asSeconds();
|
||||||
while (isRunning) {
|
while (isRunning) {
|
||||||
|
|
Reference in a new issue