mirror of https://github.com/stella-emu/stella.git
Revert "More cleanups."
This reverts commit bda71d1eb6
.
Oops, a little too eager here.
This commit is contained in:
parent
bda71d1eb6
commit
fd35ce623b
|
@ -285,6 +285,10 @@ class FBSurface
|
||||||
struct Attributes {
|
struct Attributes {
|
||||||
bool blending{false}; // Blending is enabled
|
bool blending{false}; // Blending is enabled
|
||||||
uInt32 blendalpha{100}; // Alpha to use in blending mode (0-100%)
|
uInt32 blendalpha{100}; // Alpha to use in blending mode (0-100%)
|
||||||
|
|
||||||
|
bool operator==(const Attributes& other) const {
|
||||||
|
return blendalpha == other.blendalpha && blending == other.blending;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue