mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-12 04:22:15 +00:00
PowerPC: Namespace all header contents for PowerPC.h
Puts everything under the same namespace. Previously the header was only partially namespaced, which is inconsistent.
This commit is contained in:
parent
5e76f3a6d4
commit
4c97deb364
19 changed files with 187 additions and 183 deletions
|
@ -21,7 +21,7 @@ double HLE::SystemVABI::VAList::GetFPR(u32 fpr) const
|
|||
HLE::SystemVABI::VAListStruct::VAListStruct(u32 address)
|
||||
: VAList(0), m_va_list{PowerPC::HostRead_U8(address), PowerPC::HostRead_U8(address + 1),
|
||||
PowerPC::HostRead_U32(address + 4), PowerPC::HostRead_U32(address + 8)},
|
||||
m_address(address), m_has_fpr_area(GetCRBit(6) == 1)
|
||||
m_address(address), m_has_fpr_area(PowerPC::GetCRBit(6) == 1)
|
||||
{
|
||||
m_stack = m_va_list.overflow_arg_area;
|
||||
m_gpr += m_va_list.gpr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue