Allow a GuiImage in GameInfoContainer

This commit is contained in:
Maschell 2020-02-21 15:00:27 +01:00
parent 7b0f3cf507
commit 477efedf24
1 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ private:
class GameInfoContainer {
public:
GameInfoContainer(GuiButton* button, GameIcon * image, gameInfo * info) {
GameInfoContainer(GuiButton* button, GuiImage * image, gameInfo * info) {
this->image = image;
this->info = info;
this->button = button;
@ -115,7 +115,7 @@ private:
}
}
GameIcon * image;
GuiImage * image;
gameInfo * info;
GuiButton * button;
};