Skip to content

Commit

Permalink
BLUGA: Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumeAbel committed Nov 3, 2023
1 parent 082b262 commit c44fecc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ namespace Raylib {

static int measureText(const std::string text, int fontSize);

static std::unique_ptr<Text> fromText(const std::string &text, Vector2 position, float fontSize, Color color);
static std::unique_ptr<Text> fromText(const std::string &text, Vector2 position = Vector2(0, 0), float fontSize = 5.0F, Color color = Color(0, 0, 0));

virtual ~Text() = default;

Expand Down
2 changes: 1 addition & 1 deletion libs/B-luga/include/B-luga/Json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class Json {
return (datas);
}

bool isDataExist(nlohmann::basic_json<> jsonData, const std::string &index)
static bool isDataExist(nlohmann::basic_json<> jsonData, const std::string &index)
{
if (jsonData[index] == nullptr) {
return (false);
Expand Down

0 comments on commit c44fecc

Please sign in to comment.