mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-04 09:56:30 +00:00
BAGEL: Remove unused class member from CBagLinkObject (fixing also CIC 1544862)
This commit is contained in:
parent
fbcdea6edb
commit
f18ebe60f9
@ -33,6 +33,7 @@ CBagLinkObject::CBagLinkObject() {
|
||||
_destLocation = CBofPoint(0, 0);
|
||||
_srcLocation = CBofPoint(-1, -1);
|
||||
_fade = 0;
|
||||
|
||||
setVisible(false);
|
||||
CBagObject::setOverCursor(5);
|
||||
}
|
||||
|
@ -32,14 +32,13 @@ namespace Bagel {
|
||||
*/
|
||||
class CBagLinkObject : public CBagObject {
|
||||
public:
|
||||
enum LINK_TYPE { LINK = 0, CLOSEUP = 1 };
|
||||
enum LinkType { LINK = 0, CLOSEUP = 1 };
|
||||
|
||||
private:
|
||||
CBofSize _size;
|
||||
int _outline;
|
||||
CBofPoint _destLocation;
|
||||
CBofPoint _srcLocation;
|
||||
LINK_TYPE _linkType;
|
||||
LinkType _linkType;
|
||||
int _fade;
|
||||
|
||||
public:
|
||||
@ -72,9 +71,6 @@ public:
|
||||
void setSrcLoc(CBofPoint loc) {
|
||||
_srcLocation = loc;
|
||||
}
|
||||
void setOutline(int color) {
|
||||
_outline = color;
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace Bagel
|
||||
|
Loading…
x
Reference in New Issue
Block a user