From d1db6a6827b0063e2c8f24123ee6e2220b43145a Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Tue, 9 Jul 2019 12:07:58 +0300 Subject: [PATCH] Revert incorrect usage of le_t in name_u64 --- rpcs3/Emu/Cell/lv2/sys_cond.h | 2 +- rpcs3/Emu/Cell/lv2/sys_event.h | 2 +- rpcs3/Emu/Cell/lv2/sys_event_flag.h | 2 +- rpcs3/Emu/Cell/lv2/sys_lwcond.h | 2 +- rpcs3/Emu/Cell/lv2/sys_lwmutex.h | 2 +- rpcs3/Emu/Cell/lv2/sys_mutex.h | 2 +- rpcs3/Emu/Cell/lv2/sys_rwlock.h | 2 +- rpcs3/Emu/Cell/lv2/sys_semaphore.h | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/rpcs3/Emu/Cell/lv2/sys_cond.h b/rpcs3/Emu/Cell/lv2/sys_cond.h index dc91912969..3e95f84b14 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 { - le_t name_u64; + u64 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 f7a080de4e..def86a64d7 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 { - le_t name_u64; + u64 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 ed97911a21..4bca382522 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 { - le_t name_u64; + u64 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 2bdac52e59..ce38c4feec 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 { - le_t name_u64; + u64 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 bd8d5f8ff6..f7eab80070 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 { - le_t name_u64; + u64 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 c46a7bc3d7..cc200af9a8 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 { - le_t name_u64; + u64 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 2ee2a8d8a7..a500f5cde9 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 { - le_t name_u64; + u64 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 5ef2c72e42..43082956e7 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 { - le_t name_u64; + u64 name_u64; char name[sizeof(u64)]; }; };