mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 14:01:25 +12:00
Minor struct memory layout optimization
Some checks are pending
Generate Translation Template / Generate Translation Template (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04 gcc (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04-arm clang (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04 clang (push) Waiting to run
Build RPCS3 / RPCS3 Windows (push) Waiting to run
Some checks are pending
Generate Translation Template / Generate Translation Template (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04 gcc (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04-arm clang (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04 clang (push) Waiting to run
Build RPCS3 / RPCS3 Windows (push) Waiting to run
This commit is contained in:
parent
3aba805bc9
commit
3e674a896f
1 changed files with 2 additions and 2 deletions
|
@ -459,11 +459,11 @@ struct VibrateMotor
|
||||||
|
|
||||||
struct ps_move_data
|
struct ps_move_data
|
||||||
{
|
{
|
||||||
bool external_device_connected = false;
|
|
||||||
u32 external_device_id = 0;
|
u32 external_device_id = 0;
|
||||||
std::array<u8, 5> external_device_data{};
|
|
||||||
std::array<u8, 38> external_device_read{}; // CELL_GEM_EXTERNAL_PORT_DEVICE_INFO_SIZE
|
std::array<u8, 38> external_device_read{}; // CELL_GEM_EXTERNAL_PORT_DEVICE_INFO_SIZE
|
||||||
std::array<u8, 40> external_device_write{}; // CELL_GEM_EXTERNAL_PORT_OUTPUT_SIZE
|
std::array<u8, 40> external_device_write{}; // CELL_GEM_EXTERNAL_PORT_OUTPUT_SIZE
|
||||||
|
std::array<u8, 5> external_device_data{};
|
||||||
|
bool external_device_connected = false;
|
||||||
bool external_device_read_requested = false;
|
bool external_device_read_requested = false;
|
||||||
bool external_device_write_requested = false;
|
bool external_device_write_requested = false;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue