mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-31 22:00:28 +01:00
Minor struct memory layout optimization
This commit is contained in:
parent
3aba805bc9
commit
3e674a896f
|
|
@ -459,11 +459,11 @@ struct VibrateMotor
|
|||
|
||||
struct ps_move_data
|
||||
{
|
||||
bool external_device_connected = false;
|
||||
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, 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_write_requested = false;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue