Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixup after #6168 #6174

Merged
merged 2 commits into from Jul 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/lv2/sys_cond.h
Expand Up @@ -13,7 +13,7 @@ struct sys_cond_attribute_t

union
{
le_t<u64> name_u64;
u64 name_u64;
char name[sizeof(u64)];
};
};
Expand Down
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/lv2/sys_event.h
Expand Up @@ -59,7 +59,7 @@ struct sys_event_queue_attribute_t

union
{
le_t<u64> name_u64;
u64 name_u64;
char name[sizeof(u64)];
};
};
Expand Down
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/lv2/sys_event_flag.h
Expand Up @@ -26,7 +26,7 @@ struct sys_event_flag_attribute_t

union
{
le_t<u64> name_u64;
u64 name_u64;
char name[sizeof(u64)];
};
};
Expand Down
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/lv2/sys_lwcond.h
Expand Up @@ -10,7 +10,7 @@ struct sys_lwcond_attribute_t
{
union
{
le_t<u64> name_u64;
u64 name_u64;
char name[sizeof(u64)];
};
};
Expand Down
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/lv2/sys_lwmutex.h
Expand Up @@ -11,7 +11,7 @@ struct sys_lwmutex_attribute_t

union
{
le_t<u64> name_u64;
u64 name_u64;
char name[sizeof(u64)];
};
};
Expand Down
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/lv2/sys_mutex.h
Expand Up @@ -16,7 +16,7 @@ struct sys_mutex_attribute_t

union
{
le_t<u64> name_u64;
u64 name_u64;
char name[sizeof(u64)];
};
};
Expand Down
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/lv2/sys_rwlock.h
Expand Up @@ -14,7 +14,7 @@ struct sys_rwlock_attribute_t

union
{
le_t<u64> name_u64;
u64 name_u64;
char name[sizeof(u64)];
};
};
Expand Down
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/lv2/sys_semaphore.h
Expand Up @@ -14,7 +14,7 @@ struct sys_semaphore_attribute_t

union
{
le_t<u64> name_u64;
u64 name_u64;
char name[sizeof(u64)];
};
};
Expand Down
2 changes: 1 addition & 1 deletion rpcs3/Emu/RSX/rsx_methods.h
Expand Up @@ -493,7 +493,7 @@ namespace rsx
using decoded_type = typename registers_decoder<opcode>::decoded_type;

template<u32 opcode>
const decoded_type<opcode> decode() const
decoded_type<opcode> decode() const
{
u32 register_value = registers[opcode];
return decoded_type<opcode>(register_value);
Expand Down