Skip to content

Commit

Permalink
BLUGA-GRAPHICS: Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
KitetsuK committed Nov 5, 2023
1 parent 512c0c2 commit 1e32baa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ namespace Types {
};

struct Button {
Button(std::function<void()> &fct, const std::string &name = "") : callback(fct), name(name){};
Button(std::function<void()> &fct, const std::string &name = "") : callback(fct), _name(name){};
std::function<void()> callback;
std::string name;
std::string _name;
};

struct InputBox {
Expand Down

0 comments on commit 1e32baa

Please sign in to comment.