diff options
author | Karroffel <therzog@mail.de> | 2017-04-11 15:48:26 +0200 |
---|---|---|
committer | Karroffel <therzog@mail.de> | 2017-04-11 15:48:26 +0200 |
commit | 005b9aa148dc0010890dec6e157b5359da790ecc (patch) | |
tree | 6fdad8dc2f261d4a304055ab2a90e94ce469aed4 /include/godot_cpp/core/String.hpp | |
parent | e16e2fe308a97bc417d2728936f7f8fdd95f7751 (diff) | |
download | redot-cpp-005b9aa148dc0010890dec6e157b5359da790ecc.tar.gz |
String.c_string() now returns char *
Diffstat (limited to 'include/godot_cpp/core/String.hpp')
-rw-r--r-- | include/godot_cpp/core/String.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/godot_cpp/core/String.hpp b/include/godot_cpp/core/String.hpp index 1beaf21..ee6532e 100644 --- a/include/godot_cpp/core/String.hpp +++ b/include/godot_cpp/core/String.hpp @@ -65,7 +65,7 @@ public: operator NodePath() const; - const wchar_t *c_string() const; + const char *c_string() const; }; |