Skip to content

Commit

Permalink
BBVS: Initialize a pointer to nullptr instead of 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Feb 28, 2014
1 parent 7cd6b8b commit 79bad44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/bbvs/minigames/minigame.cpp
Expand Up @@ -26,7 +26,7 @@
namespace Bbvs {

Minigame::Minigame(BbvsEngine *vm)
: _vm(vm), _spriteModule(0) {
: _vm(vm), _spriteModule(nullptr) {

memset(_hiScoreTable, 0, sizeof(_hiScoreTable));
_gameState = 0;
Expand Down

0 comments on commit 79bad44

Please sign in to comment.