Initialize all members.
This commit is contained in:
parent
40075dc494
commit
470fe36bcb
1 changed files with 7 additions and 2 deletions
|
@ -17,8 +17,13 @@
|
|||
#include "dialogs.hpp"
|
||||
#include "mouse_handler_base.hpp"
|
||||
|
||||
controller_base::controller_base(int ticks, const config& game_config, CVideo& /*video*/)
|
||||
: game_config_(game_config), ticks_(ticks), browse_(false), scrolling_(false)
|
||||
controller_base::controller_base(
|
||||
int ticks, const config& game_config, CVideo& /*video*/) :
|
||||
game_config_(game_config),
|
||||
ticks_(ticks),
|
||||
key_(),
|
||||
browse_(false),
|
||||
scrolling_(false)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue