Skip to content
This repository has been archived by the owner on Apr 16, 2018. It is now read-only.

Commit

Permalink
Arrumado problema de não zerar placar em nova partida
Browse files Browse the repository at this point in the history
  • Loading branch information
Alynva committed Jul 10, 2017
1 parent fd7ebba commit f71e256
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Cara_cracha.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,12 @@ bool Cara_cracha::init() {
bool Cara_cracha::update() {
int tela_id_antiga = this->tela_id; // Verifica se é necessário reiniciar o tempo
this->event.update();
if ((tela_id_antiga == 0 || tela_id_antiga == 3) && this->tela_id == 1) // Sai da tela inicial ou da tela final e vai para a tela de inicio de jogo
if ((tela_id_antiga == 0 || tela_id_antiga == 3) && this->tela_id == 1) { // Sai da tela inicial ou da tela final e vai para a tela de inicio de jogo
this->hora = HORA_INICIO_JOGO;
this->pontua_prov = 0;
for (int i = 0; i < 4; i++)
this->count_criterios[i] = 0;
}


if (this->tela_id == 1 || this->tela_id == 2) { // Atualiza as informações apenas durante o jogo
Expand Down

0 comments on commit f71e256

Please sign in to comment.