mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-23 21:15:35 +08:00
Remove spaces from field type names
This commit is contained in:
parent
1d407d607b
commit
c00ac5dbb7
@ -147,7 +147,9 @@ fn read_class_binding_fields(
|
|||||||
let schema_type = process.read_ptr(field.schema_type)?;
|
let schema_type = process.read_ptr(field.schema_type)?;
|
||||||
|
|
||||||
// TODO: Parse this properly.
|
// TODO: Parse this properly.
|
||||||
let ty = process.read_char_string(schema_type.name.address())?;
|
let ty = process
|
||||||
|
.read_char_string(schema_type.name.address())?
|
||||||
|
.replace(" ", "");
|
||||||
|
|
||||||
Ok(ClassField {
|
Ok(ClassField {
|
||||||
name,
|
name,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user