mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-30 13:24:16 +01:00
Fix ABI mismatch in packed HIO request
Using size_t etc. is incorrect, since these definitions are based on the build machine which most likely has a different arch than the 3DS.
This commit is contained in:
parent
874bfebaf9
commit
b9c11e71d7
@ -17,11 +17,11 @@ struct PackedGdbHioRequest {
|
|||||||
char param_format[8 + 1];
|
char param_format[8 + 1];
|
||||||
|
|
||||||
u64 parameters[8];
|
u64 parameters[8];
|
||||||
size_t string_lengths[8];
|
u32 string_lengths[8];
|
||||||
|
|
||||||
// Return
|
// Return
|
||||||
s64 retval;
|
s64 retval;
|
||||||
int gdb_errno;
|
s32 gdb_errno;
|
||||||
bool ctrl_c;
|
bool ctrl_c;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user