ULTIMA: Add missing initializers for coverity

This commit is contained in:
Matthew Duggan 2020-05-09 22:02:27 +09:00
parent 44513f457f
commit 09bf38c120
5 changed files with 5 additions and 5 deletions

View File

@ -40,7 +40,7 @@ void MouseCursor::MouseCursorData::load(Common::SeekableReadStream &s) {
/*-------------------------------------------------------------------*/
MouseCursor::MouseCursor() {
MouseCursor::MouseCursor() : _cursorId(-1) {
/*
loadCursors();
_cursorId = -1;

View File

@ -44,7 +44,7 @@ Shared::UltimaEarlyEngine *g_vm;
namespace Shared {
UltimaEarlyEngine::UltimaEarlyEngine(OSystem *syst, const UltimaGameDescription *gameDesc) :
UltimaEngine(syst, gameDesc) {
UltimaEngine(syst, gameDesc), _game(nullptr) {
g_vm = this;
_mouseCursor = nullptr;
_screen = nullptr;

View File

@ -34,7 +34,7 @@ namespace Shared {
EventsManager::EventsManager(EventsCallback *callback) : _callback(callback), _playTime(0),
_gameCounter(0), _frameCounter(0), _priorFrameCounterTime(0), _buttonsDown(0),
_specialButtons(0) {
_specialButtons(0), _priorFrameTime(0) {
}
void EventsManager::showCursor() {

View File

@ -31,7 +31,7 @@ BEGIN_MESSAGE_MAP(Popup, VisualItem)
ON_MESSAGE(ShowMsg)
END_MESSAGE_MAP()
Popup::Popup(GameBase *game) : VisualItem(nullptr), _game(game), _respondTo(nullptr) {
Popup::Popup(GameBase *game) : VisualItem(nullptr), _game(game), _respondTo(nullptr), _parentView(nullptr) {
game->addChild(this);
}

View File

@ -68,7 +68,7 @@ public:
/**
* Constructor
*/
MapWidget(Game *game, MapBase *map) : _game(game), _map(map) {}
MapWidget(Game *game, MapBase *map) : _game(game), _map(map), _direction(DIR_NONE) {}
MapWidget(Game *game, MapBase *map, const Point &pt, Direction dir = DIR_NONE) : _game(game), _map(map), _position(pt), _direction(dir) {}
MapWidget(Game *game, MapBase *map, const Common::String &name, const Point &pt, Direction dir = DIR_NONE) :
_game(game), _map(map), _name(name), _position(pt), _direction(dir) {}