Skip to content

Commit

Permalink
[BOX32] Fixed 32bits wrapped localeconv (for #1780)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Sep 13, 2024
1 parent af476e0 commit 32c94ac
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/wrapped32/wrappedlibc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2427,6 +2427,7 @@ EXPORT void* my32_localeconv(x64emu_t* emu)
static struct i386_lconv ret = {0};
struct lconv* l = localeconv();
ret.decimal_point = to_cstring(l->decimal_point);
ret.thousands_sep = to_cstring(l->thousands_sep);
ret.grouping = to_cstring(l->grouping);
ret.int_curr_symbol = to_cstring(l->int_curr_symbol);
ret.currency_symbol = to_cstring(l->currency_symbol);
Expand Down

0 comments on commit 32c94ac

Please sign in to comment.