mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 15:01:28 +12:00
Minor struct memory layout optimization
This commit is contained in:
parent
18b5710d90
commit
7c3bb77fca
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue