We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0636792 commit 0445ea3Copy full SHA for 0445ea3
2 files changed
patterns/gvas.hexpat
@@ -256,14 +256,23 @@ enum EFormatArgumentType: u8 {
256
Float,
257
Double,
258
Text,
259
+ Gender,
260
};
261
262
using FText;
263
struct FFormatArgumentValue {
264
EFormatArgumentType type;
265
match (type) {
266
+ (EFormatArgumentType::Double): double value;
267
+ (EFormatArgumentType::Float): float value;
268
(EFormatArgumentType::Int): {
- // FUE5ReleaseStreamObjectVersion::TextFormatArgumentData64bitSupport
269
+ if (text64bitSupport) {
270
+ s64 value;
271
+ } else {
272
+ s32 value;
273
+ }
274
275
+ (EFormatArgumentType::UInt | EFormatArgumentType::Gender): {
276
if (text64bitSupport) {
277
u64 value;
278
} else {
tests/patterns/test_data/gvas.hexpat/text_property_noarray.bin
258 KB
0 commit comments