[Image Font Importer] Fix reading advance after hex/dec range.

This commit is contained in:
bruvzg 2024-06-12 11:38:41 +03:00
parent 292e50e17e
commit 26df66cbad
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38

View file

@ -229,6 +229,7 @@ Error ResourceImporterImageFont::import(const String &p_source_file, const Strin
} else {
end = token.hex_to_int();
step = STEP_ADVANCE_BEGIN;
c--;
}
}
} break;
@ -244,6 +245,7 @@ Error ResourceImporterImageFont::import(const String &p_source_file, const Strin
} else {
end = token.to_int();
step = STEP_ADVANCE_BEGIN;
c--;
}
}
} break;