diff --git a/rpcs3/Emu/Cell/lv2/sys_cond.h b/rpcs3/Emu/Cell/lv2/sys_cond.h index 3e95f84b14..247c812f1b 100644 --- a/rpcs3/Emu/Cell/lv2/sys_cond.h +++ b/rpcs3/Emu/Cell/lv2/sys_cond.h @@ -13,7 +13,7 @@ struct sys_cond_attribute_t union { - u64 name_u64; + nse_t name_u64; char name[sizeof(u64)]; }; }; diff --git a/rpcs3/Emu/Cell/lv2/sys_event.h b/rpcs3/Emu/Cell/lv2/sys_event.h index 079af65565..3c3a7e6d1e 100644 --- a/rpcs3/Emu/Cell/lv2/sys_event.h +++ b/rpcs3/Emu/Cell/lv2/sys_event.h @@ -59,7 +59,7 @@ struct sys_event_queue_attribute_t union { - u64 name_u64; + nse_t name_u64; char name[sizeof(u64)]; }; }; diff --git a/rpcs3/Emu/Cell/lv2/sys_event_flag.h b/rpcs3/Emu/Cell/lv2/sys_event_flag.h index e36d244c15..80cb9e7d80 100644 --- a/rpcs3/Emu/Cell/lv2/sys_event_flag.h +++ b/rpcs3/Emu/Cell/lv2/sys_event_flag.h @@ -26,7 +26,7 @@ struct sys_event_flag_attribute_t union { - u64 name_u64; + nse_t name_u64; char name[sizeof(u64)]; }; }; diff --git a/rpcs3/Emu/Cell/lv2/sys_lwcond.h b/rpcs3/Emu/Cell/lv2/sys_lwcond.h index 6e9c353977..849e10b095 100644 --- a/rpcs3/Emu/Cell/lv2/sys_lwcond.h +++ b/rpcs3/Emu/Cell/lv2/sys_lwcond.h @@ -10,7 +10,7 @@ struct sys_lwcond_attribute_t { union { - u64 name_u64; + nse_t name_u64; char name[sizeof(u64)]; }; }; diff --git a/rpcs3/Emu/Cell/lv2/sys_lwmutex.h b/rpcs3/Emu/Cell/lv2/sys_lwmutex.h index f7eab80070..d10877cc21 100644 --- a/rpcs3/Emu/Cell/lv2/sys_lwmutex.h +++ b/rpcs3/Emu/Cell/lv2/sys_lwmutex.h @@ -11,7 +11,7 @@ struct sys_lwmutex_attribute_t union { - u64 name_u64; + nse_t name_u64; char name[sizeof(u64)]; }; }; diff --git a/rpcs3/Emu/Cell/lv2/sys_mutex.h b/rpcs3/Emu/Cell/lv2/sys_mutex.h index cc200af9a8..f2ffc1e16a 100644 --- a/rpcs3/Emu/Cell/lv2/sys_mutex.h +++ b/rpcs3/Emu/Cell/lv2/sys_mutex.h @@ -16,7 +16,7 @@ struct sys_mutex_attribute_t union { - u64 name_u64; + nse_t name_u64; char name[sizeof(u64)]; }; }; diff --git a/rpcs3/Emu/Cell/lv2/sys_rwlock.h b/rpcs3/Emu/Cell/lv2/sys_rwlock.h index a21ae592c0..e46843a512 100644 --- a/rpcs3/Emu/Cell/lv2/sys_rwlock.h +++ b/rpcs3/Emu/Cell/lv2/sys_rwlock.h @@ -14,7 +14,7 @@ struct sys_rwlock_attribute_t union { - u64 name_u64; + nse_t name_u64; char name[sizeof(u64)]; }; }; diff --git a/rpcs3/Emu/Cell/lv2/sys_semaphore.h b/rpcs3/Emu/Cell/lv2/sys_semaphore.h index dd6a766076..5dede72375 100644 --- a/rpcs3/Emu/Cell/lv2/sys_semaphore.h +++ b/rpcs3/Emu/Cell/lv2/sys_semaphore.h @@ -14,7 +14,7 @@ struct sys_semaphore_attribute_t union { - u64 name_u64; + nse_t name_u64; char name[sizeof(u64)]; }; };