Add back fastforwarding
This commit is contained in:
parent
b779c37aba
commit
13932a45e8
1 changed files with 2 additions and 2 deletions
|
@ -190,7 +190,7 @@ int main()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool is_update_frame = update_clock.getElapsedTime().asMilliseconds() > 250;
|
bool is_update_frame = update_clock.getElapsedTime().asMilliseconds() > (sf::Keyboard::isKeyPressed(sf::Keyboard::Down) ? 125 : 250);
|
||||||
if (is_update_frame) {
|
if (is_update_frame) {
|
||||||
update_clock.restart();
|
update_clock.restart();
|
||||||
}
|
}
|
||||||
|
@ -318,7 +318,7 @@ int main()
|
||||||
if (!redraw) {
|
if (!redraw) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Drawing grid
|
// Drawing grid
|
||||||
for (int y = 0; y < GRID_HEIGHT; y++) {
|
for (int y = 0; y < GRID_HEIGHT; y++) {
|
||||||
for (int x = 0; x < GRID_WIDTH; x++) {
|
for (int x = 0; x < GRID_WIDTH; x++) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue