String.c_string() now returns char *
This commit is contained in:
parent
e16e2fe308
commit
005b9aa148
@ -126,7 +126,7 @@ String::operator NodePath() const
|
|||||||
return NodePath(*this);
|
return NodePath(*this);
|
||||||
}
|
}
|
||||||
|
|
||||||
const wchar_t *String::c_string() const
|
const char *String::c_string() const
|
||||||
{
|
{
|
||||||
return godot_string_c_str(&_godot_string);
|
return godot_string_c_str(&_godot_string);
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,7 @@ public:
|
|||||||
|
|
||||||
operator NodePath() const;
|
operator NodePath() const;
|
||||||
|
|
||||||
const wchar_t *c_string() const;
|
const char *c_string() const;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user