mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
Fixed leak with Input class, introduced in commit 34206.
svn-id: r34224
This commit is contained in:
parent
4cda7abda1
commit
ccf88578c8
@ -313,6 +313,7 @@ struct Cnv : public Frames {
|
||||
uint16 _height; //
|
||||
byte** field_8; // unused
|
||||
byte* _data;
|
||||
bool _freeData;
|
||||
|
||||
public:
|
||||
Cnv() {
|
||||
@ -320,12 +321,14 @@ public:
|
||||
_data = NULL;
|
||||
}
|
||||
|
||||
Cnv(uint16 numFrames, uint16 width, uint16 height, byte* data) : _count(numFrames), _width(width), _height(height), _data(data) {
|
||||
Cnv(uint16 numFrames, uint16 width, uint16 height, byte* data, bool freeData = false)
|
||||
: _count(numFrames), _width(width), _height(height), _data(data), _freeData(freeData) {
|
||||
|
||||
}
|
||||
|
||||
~Cnv() {
|
||||
free(_data);
|
||||
if (_freeData)
|
||||
free(_data);
|
||||
}
|
||||
|
||||
byte* getFramePtr(uint16 index) {
|
||||
|
@ -421,10 +421,12 @@ bool Input::isMouseEnabled() {
|
||||
|
||||
void Input::initCursors() {
|
||||
|
||||
_dinoCursor = _donnaCursor = _dougCursor = 0;
|
||||
|
||||
switch (_gameType) {
|
||||
case GType_Nippon:
|
||||
_comboArrow = _vm->_disk->loadPointer("pointer");
|
||||
_mouseArrow = new Cnv(1, MOUSEARROW_WIDTH_NS, MOUSEARROW_HEIGHT_NS, _resMouseArrow_NS);
|
||||
_mouseArrow = new Cnv(1, MOUSEARROW_WIDTH_NS, MOUSEARROW_HEIGHT_NS, _resMouseArrow_NS, false);
|
||||
break;
|
||||
|
||||
case GType_BRA:
|
||||
|
Loading…
x
Reference in New Issue
Block a user