mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
ULTIMA: Add missing initializers for coverity
This commit is contained in:
parent
44513f457f
commit
09bf38c120
@ -40,7 +40,7 @@ void MouseCursor::MouseCursorData::load(Common::SeekableReadStream &s) {
|
||||
|
||||
/*-------------------------------------------------------------------*/
|
||||
|
||||
MouseCursor::MouseCursor() {
|
||||
MouseCursor::MouseCursor() : _cursorId(-1) {
|
||||
/*
|
||||
loadCursors();
|
||||
_cursorId = -1;
|
||||
|
@ -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;
|
||||
|
@ -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() {
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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) {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user