mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-09 17:44:01 -07:00
Fix uninitialized variable
This commit is contained in:
parent
3db9c0a257
commit
c416248e9b
1 changed files with 2 additions and 1 deletions
|
|
@ -245,7 +245,8 @@ TabGame::TabGame(TabSupervisor *_tabSupervisor, GameReplay *_replay)
|
||||||
activeCard(0),
|
activeCard(0),
|
||||||
gameClosed(false),
|
gameClosed(false),
|
||||||
replay(_replay),
|
replay(_replay),
|
||||||
currentReplayStep(0)
|
currentReplayStep(0),
|
||||||
|
secondsElapsed(0)
|
||||||
{
|
{
|
||||||
setAttribute(Qt::WA_DeleteOnClose);
|
setAttribute(Qt::WA_DeleteOnClose);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue