diff options
Diffstat (limited to 'core')
| -rw-r--r-- | core/io/marshalls.cpp | 3 | ||||
| -rw-r--r-- | core/os/os.h | 2 | ||||
| -rw-r--r-- | core/project_settings.cpp | 4 | ||||
| -rw-r--r-- | core/string_db.h | 3 | 
4 files changed, 8 insertions, 4 deletions
diff --git a/core/io/marshalls.cpp b/core/io/marshalls.cpp index 0834d6c321..d388a622de 100644 --- a/core/io/marshalls.cpp +++ b/core/io/marshalls.cpp @@ -1140,8 +1140,9 @@ Error encode_variant(const Variant &p_variant, uint8_t *r_buffer, int &r_len, bo  					if (buf) {  						encode_uint32(0, buf);  						buf += 4; -						r_len += 4;  					} +					r_len += 4; +  				} else {  					_encode_string(obj->get_class(), buf, r_len); diff --git a/core/os/os.h b/core/os/os.h index 6fcfd71332..48effe99da 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -204,7 +204,7 @@ public:  	virtual String get_installed_templates_path() const { return ""; }  	virtual String get_executable_path() const; -	virtual Error execute(const String &p_path, const List<String> &p_arguments, bool p_blocking, ProcessID *r_child_id = NULL, String *r_pipe = NULL, int *r_exitcode = NULL) = 0; +	virtual Error execute(const String &p_path, const List<String> &p_arguments, bool p_blocking, ProcessID *r_child_id = NULL, String *r_pipe = NULL, int *r_exitcode = NULL, bool read_stderr = false) = 0;  	virtual Error kill(const ProcessID &p_pid) = 0;  	virtual int get_process_id() const; diff --git a/core/project_settings.cpp b/core/project_settings.cpp index ff2be87b07..3994011c06 100644 --- a/core/project_settings.cpp +++ b/core/project_settings.cpp @@ -667,8 +667,8 @@ Error ProjectSettings::_save_settings_text(const String &p_file, const Map<Strin  	file->store_line("; Engine configuration file.");  	file->store_line("; It's best edited using the editor UI and not directly,");  	file->store_line("; since the parameters that go here are not all obvious."); -	file->store_line("; "); -	file->store_line("; Format: "); +	file->store_line(";"); +	file->store_line("; Format:");  	file->store_line(";   [section] ; section goes between []");  	file->store_line(";   param=value ; assign values to parameters");  	file->store_line(""); diff --git a/core/string_db.h b/core/string_db.h index 2bef29fab8..de91e2abd8 100644 --- a/core/string_db.h +++ b/core/string_db.h @@ -113,6 +113,9 @@ public:  		else  			return 0;  	} +	_FORCE_INLINE_ const void *data_unique_pointer() const { +		return (void *)_data; +	}  	bool operator!=(const StringName &p_name) const;  	_FORCE_INLINE_ operator String() const {  |