mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-23 18:05:34 +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)?;
|
||||
|
||||
// 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 {
|
||||
name,
|
||||
|
Loading…
x
Reference in New Issue
Block a user