Fix mono build after bc2e8d99
This commit is contained in:
parent
d9faf6f2f4
commit
aa5f7e0ff2
1 changed files with 2 additions and 2 deletions
|
@ -370,7 +370,7 @@ Error BindingsGenerator::generate_cs_core_project(const String &p_output_dir, bo
|
|||
|
||||
Vector<uint8_t> data;
|
||||
data.resize(file_data.uncompressed_size);
|
||||
Compression::decompress(data.ptr(), file_data.uncompressed_size, file_data.data, file_data.compressed_size, Compression::MODE_DEFLATE);
|
||||
Compression::decompress(data.ptrw(), file_data.uncompressed_size, file_data.data, file_data.compressed_size, Compression::MODE_DEFLATE);
|
||||
|
||||
if (file_name.get_basename() == BINDINGS_GLOBAL_SCOPE_CLASS) {
|
||||
// GD.cs must be formatted to include the generated global constants
|
||||
|
@ -382,7 +382,7 @@ Error BindingsGenerator::generate_cs_core_project(const String &p_output_dir, bo
|
|||
|
||||
CharString data_utf8 = data_str.utf8();
|
||||
data.resize(data_utf8.length());
|
||||
copymem(data.ptr(), reinterpret_cast<const uint8_t *>(data_utf8.get_data()), data_utf8.length());
|
||||
copymem(data.ptrw(), reinterpret_cast<const uint8_t *>(data_utf8.get_data()), data_utf8.length());
|
||||
}
|
||||
|
||||
FileAccessRef file = FileAccess::open(output_file, FileAccess::WRITE);
|
||||
|
|
Loading…
Reference in a new issue