diff options
author | Max Horn | 2009-12-08 20:44:57 +0000 |
---|---|---|
committer | Max Horn | 2009-12-08 20:44:57 +0000 |
commit | 5f178e86500b93d6d0c5fb65ce2908522319e703 (patch) | |
tree | da02f7959a15224fc94849bff02935b74c69f1fd /engines/groovie | |
parent | 923cbff625f91c5afc6163813852e9a58ed43912 (diff) | |
download | scummvm-rg350-5f178e86500b93d6d0c5fb65ce2908522319e703.tar.gz scummvm-rg350-5f178e86500b93d6d0c5fb65ce2908522319e703.tar.bz2 scummvm-rg350-5f178e86500b93d6d0c5fb65ce2908522319e703.zip |
Fix some MSVC warnings (part of patch #2909981)
svn-id: r46291
Diffstat (limited to 'engines/groovie')
-rw-r--r-- | engines/groovie/cell.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/groovie/cell.cpp b/engines/groovie/cell.cpp index 57061c17de..270df480e4 100644 --- a/engines/groovie/cell.cpp +++ b/engines/groovie/cell.cpp @@ -749,7 +749,7 @@ int16 CellGame::doGame(int8 color, int depth) { const int8 depths[] = { 1, 1, 1, 2, 1, 1, 2, 2, 1, 2, 2, 2, 3, 2, 2, 3, 3, 2, 3, 3, 3 }; int16 CellGame::calcMove(int8 color, uint16 depth) { - int result; + int result = 0; _flag1 = false; ++_moveCount; |