diff options
Diffstat (limited to 'engines/titanic/game_state.h')
-rw-r--r-- | engines/titanic/game_state.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/titanic/game_state.h b/engines/titanic/game_state.h index ba1dff2a45..965735026c 100644 --- a/engines/titanic/game_state.h +++ b/engines/titanic/game_state.h @@ -48,15 +48,15 @@ enum Season { PTR_LIST_ITEM(CMovie); class CGameStateMovieList : public List<CMovieListItem> { public: - CViewItem *_view; + CViewItem *_destView; CMovieClip *_movieClip; public: - CGameStateMovieList() : List<CMovieListItem>(), _view(nullptr), _movieClip(nullptr) {} + CGameStateMovieList() : List<CMovieListItem>(), _destView(nullptr), _movieClip(nullptr) {} /** - * Clear the movie list + * Returns true if there are no movies in the list */ - bool clear(); + bool empty(); }; class CGameState { |