transparency fix attempt

This commit is contained in:
Justin Scofield
2022-09-11 09:53:48 -05:00
parent 1acc027380
commit 904166ee25
3 changed files with 14 additions and 9 deletions

View File

@@ -45,7 +45,9 @@ struct SNESColor {
void setRgb(ImVec4);
void setSNES(snes_color);
void setSNES(uint16_t);
void setTransparent(bool t) { transparent = t; }
bool transparent = false;
uint16_t snes = 0;
ImVec4 rgb;
};