Core: Use nested namespace specifiers where applicable

Same thing, less visual noise.
This commit is contained in:
Lioncash 2019-06-17 16:21:31 -04:00
parent b3525ad774
commit 32bacfa4bd
52 changed files with 107 additions and 280 deletions

View File

@ -12,9 +12,7 @@
#include "Core/DSP/DSPMemoryMap.h"
#include "Core/DSP/DSPTables.h"
namespace DSP
{
namespace Analyzer
namespace DSP::Analyzer
{
namespace
{
@ -167,5 +165,4 @@ u8 GetCodeFlags(u16 address)
return code_flags[address];
}
} // namespace Analyzer
} // namespace DSP
} // namespace DSP::Analyzer

View File

@ -7,9 +7,7 @@
#include "Common/CommonTypes.h"
// Basic code analysis.
namespace DSP
{
namespace Analyzer
namespace DSP::Analyzer
{
// Useful things to detect:
// * Loop endpoints - so that we can avoid checking for loops every cycle.
@ -35,5 +33,4 @@ void Analyze();
// Retrieves the flags set during analysis for code in memory.
u8 GetCodeFlags(u16 address);
} // namespace Analyzer
} // namespace DSP
} // namespace DSP::Analyzer

View File

@ -13,9 +13,7 @@
// core isn't used, for example in an asm/disasm tool, then most of these
// can be stubbed out.
namespace DSP
{
namespace Host
namespace DSP::Host
{
u8 ReadHostMemory(u32 addr);
void WriteHostMemory(u8 value, u32 addr);
@ -25,5 +23,4 @@ bool IsWiiHost();
void InterruptRequest();
void CodeLoaded(const u8* ptr, int size);
void UpdateDebugger();
} // namespace Host
} // namespace DSP
} // namespace DSP::Host

View File

@ -12,9 +12,7 @@
// Arithmetic and accumulator control.
namespace DSP
{
namespace Interpreter
namespace DSP::Interpreter
{
// CLR $acR
// 1000 r001 xxxx xxxx
@ -1159,6 +1157,4 @@ void asrnr(const UDSPInstruction opc)
dsp_set_long_acc(dreg, acc);
Update_SR_Register64(dsp_get_long_acc(dreg));
}
} // namespace Interpreter
} // namespace DSP
} // namespace DSP::Interpreter

View File

@ -11,9 +11,7 @@
#include "Core/DSP/Interpreter/DSPIntUtil.h"
#include "Core/DSP/Interpreter/DSPInterpreter.h"
namespace DSP
{
namespace Interpreter
namespace DSP::Interpreter
{
// Generic call implementation
// CALLcc addressA
@ -263,6 +261,4 @@ void bloopi(const UDSPInstruction opc)
dsp_skip_inst();
}
}
} // namespace Interpreter
} // namespace DSP
} // namespace DSP::Interpreter

View File

@ -9,9 +9,7 @@
#include "Core/DSP/Interpreter/DSPIntCCUtil.h"
#include "Core/DSP/DSPCore.h"
namespace DSP
{
namespace Interpreter
namespace DSP::Interpreter
{
void Update_SR_Register64(s64 _Value, bool carry, bool overflow)
{
@ -182,6 +180,4 @@ bool CheckCondition(u8 _Condition)
return true;
}
}
} // namespace Interpreter
} // namespace DSP
} // namespace DSP::Interpreter

View File

@ -10,9 +10,7 @@
#include "Common/CommonTypes.h"
namespace DSP
{
namespace Interpreter
namespace DSP::Interpreter
{
bool CheckCondition(u8 _Condition);
@ -40,6 +38,4 @@ inline bool isOverS32(s64 acc)
{
return (acc != (s32)acc) ? true : false;
}
} // namespace Interpreter
} // namespace DSP
} // namespace DSP::Interpreter

View File

@ -30,9 +30,7 @@ static void WriteToBackLog(int i, int idx, u16 value)
writeBackLogIdx[i] = idx;
}
namespace Interpreter
{
namespace Ext
namespace Interpreter::Ext
{
static bool IsSameMemArea(u16 a, u16 b)
{
@ -493,9 +491,7 @@ void ldaxnm(const UDSPInstruction opc)
void nop(const UDSPInstruction opc)
{
}
} // namespace Ext
} // namespace Interpreter
} // namespace Interpreter::Ext
// The ext ops are calculated in parallel with the actual op. That means that
// both the main op and the ext op see the same register state as input. The

View File

@ -11,11 +11,7 @@
// Many opcode have the lower 0xFF (some only 0x7f) free - there, an opcode extension
// can be stored.
namespace DSP
{
namespace Interpreter
{
namespace Ext
namespace DSP::Interpreter::Ext
{
void l(UDSPInstruction opc);
void ln(UDSPInstruction opc);
@ -42,7 +38,4 @@ void dr(UDSPInstruction opc);
void ir(UDSPInstruction opc);
void nr(UDSPInstruction opc);
void nop(UDSPInstruction opc);
} // namespace Ext
} // namespace Interpreter
} // namespace DSP
} // namespace DSP::Interpreter::Ext

View File

@ -8,9 +8,7 @@
#include "Core/DSP/Interpreter/DSPIntUtil.h"
#include "Core/DSP/Interpreter/DSPInterpreter.h"
namespace DSP
{
namespace Interpreter
namespace DSP::Interpreter
{
// SRS @M, $(0x18+S)
// 0010 1sss mmmm mmmm
@ -261,6 +259,4 @@ void ilrrn(const UDSPInstruction opc)
dsp_conditional_extend_accum(dreg);
g_dsp.r.ar[reg] = dsp_increase_addr_reg(reg, (s16)g_dsp.r.ix[reg]);
}
} // namespace Interpreter
} // namespace DSP
} // namespace DSP::Interpreter

View File

@ -10,9 +10,7 @@
#include "Core/DSP/Interpreter/DSPIntUtil.h"
#include "Core/DSP/Interpreter/DSPInterpreter.h"
namespace DSP
{
namespace Interpreter
namespace DSP::Interpreter
{
// MRR $D, $S
// 0001 11dd ddds ssss
@ -159,6 +157,4 @@ void srbith(const UDSPInstruction opc)
break;
}
}
} // namespace Interpreter
} // namespace DSP
} // namespace DSP::Interpreter

View File

@ -11,9 +11,7 @@
#include "Core/DSP/Interpreter/DSPIntUtil.h"
#include "Core/DSP/Interpreter/DSPInterpreter.h"
namespace DSP
{
namespace Interpreter
namespace DSP::Interpreter
{
namespace
{
@ -594,6 +592,4 @@ void msub(const UDSPInstruction opc)
dsp_set_long_prod(prod);
}
} // namespace Interpreter
} // namespace DSP
} // namespace DSP::Interpreter

View File

@ -11,9 +11,7 @@
#include "Core/DSP/DSPCore.h"
#include "Core/DSP/DSPStacks.h"
namespace DSP
{
namespace Interpreter
namespace DSP::Interpreter
{
// ---------------------------------------------------------------------------------------
// --- SR
@ -379,5 +377,4 @@ inline s16 dsp_get_ax_h(int _reg)
return (s16)g_dsp.r.ax[_reg].h;
}
} // namespace Interpreter
} // namespace DSP
} // namespace DSP::Interpreter

View File

@ -14,9 +14,7 @@
#include "Core/DSP/DSPTables.h"
#include "Core/DSP/Interpreter/DSPIntTables.h"
namespace DSP
{
namespace Interpreter
namespace DSP::Interpreter
{
namespace
{
@ -237,6 +235,4 @@ void nop(const UDSPInstruction opc)
ERROR_LOG(DSPLLE, "LLE: Unrecognized opcode 0x%04x", opc);
}
} // namespace Interpreter
} // namespace DSP
} // namespace DSP::Interpreter

View File

@ -6,9 +6,7 @@
#include "Core/DSP/DSPCommon.h"
namespace DSP
{
namespace Interpreter
namespace DSP::Interpreter
{
void Step();
@ -146,5 +144,4 @@ void xorc(UDSPInstruction opc);
void xori(UDSPInstruction opc);
void xorr(UDSPInstruction opc);
} // namespace Interpreter
} // namespace DSP
} // namespace DSP::Interpreter

View File

@ -12,9 +12,7 @@
#include <type_traits>
namespace HLE
{
namespace SystemVABI
namespace HLE::SystemVABI
{
// SFINAE
template <typename T>
@ -172,5 +170,4 @@ private:
double GetFPR(u32 fpr) const override;
};
} // namespace SystemVABI
} // namespace HLE
} // namespace HLE::SystemVABI

View File

@ -11,9 +11,7 @@
#include "Core/HW/DSPHLE/UCodes/UCodes.h"
#include "Core/HW/SystemTimers.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
DSPHLE::DSPHLE() = default;
@ -216,5 +214,4 @@ u16 DSPHLE::DSP_ReadControlRegister()
void DSPHLE::PauseAndLock(bool do_lock, bool unpause_on_unlock)
{
}
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -13,9 +13,7 @@
class PointerWrap;
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
class UCodeInterface;
@ -73,5 +71,4 @@ private:
bool m_halt;
bool m_assert_interrupt;
};
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -12,9 +12,7 @@
#include "Common/MsgHandler.h"
#include "Core/HW/DSP.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
CMailHandler::CMailHandler()
{
@ -135,5 +133,4 @@ void CMailHandler::DoState(PointerWrap& p)
}
}
}
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -11,9 +11,7 @@
class PointerWrap;
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
class CMailHandler
{
@ -35,5 +33,4 @@ private:
// mail handler
std::queue<std::pair<u32, bool>> m_Mails;
};
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -22,9 +22,7 @@
#define AX_GC
#include "Core/HW/DSPHLE/UCodes/AXVoice.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
AXUCode::AXUCode(DSPHLE* dsphle, u32 crc) : UCodeInterface(dsphle, crc), m_cmdlist_size(0)
{
@ -727,5 +725,4 @@ void AXUCode::DoState(PointerWrap& p)
DoStateShared(p);
DoAXState(p);
}
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -15,9 +15,7 @@
#include "Common/CommonTypes.h"
#include "Core/HW/DSPHLE/UCodes/UCodes.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
class DSPHLE;
@ -155,5 +153,4 @@ private:
CMD_SEND_AUX_AND_MIX = 0x13,
};
};
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -6,9 +6,7 @@
#include "Common/CommonTypes.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
struct PBMixer
{
@ -337,5 +335,4 @@ enum
FILTER_LOWPASS = 1,
FILTER_BIQUAD = 2,
};
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -23,9 +23,7 @@
#include "Core/HW/DSPHLE/UCodes/AXStructs.h"
#include "Core/HW/Memmap.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
#ifdef AX_GC
#define PB_TYPE AXPB
@ -566,5 +564,4 @@ void ProcessVoice(PB_TYPE& pb, const AXBuffers& buffers, u16 count, AXMixControl
}
} // namespace
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -19,9 +19,7 @@
#include "Core/HW/DSPHLE/UCodes/AXVoice.h"
#include "Core/HW/DSPHLE/UCodes/UCodes.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
AXWiiUCode::AXWiiUCode(DSPHLE* dsphle, u32 crc) : AXUCode(dsphle, crc), m_last_main_volume(0x8000)
{
@ -669,5 +667,4 @@ void AXWiiUCode::DoState(PointerWrap& p)
p.Do(m_last_main_volume);
p.Do(m_last_aux_volumes);
}
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -7,9 +7,7 @@
#include "Common/CommonTypes.h"
#include "Core/HW/DSPHLE/UCodes/AX.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
struct AXPBWii;
class DSPHLE;
@ -115,5 +113,4 @@ private:
CMD_END_OLD = 0x0F
};
};
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -10,9 +10,7 @@
#include "Core/HW/DSPHLE/DSPHLE.h"
#include "Core/HW/DSPHLE/UCodes/UCodes.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
CARDUCode::CARDUCode(DSPHLE* dsphle, u32 crc) : UCodeInterface(dsphle, crc)
{
@ -52,5 +50,4 @@ void CARDUCode::HandleMail(u32 mail)
m_mail_handler.PushMail(DSP_DONE);
m_dsphle->SetUCode(UCODE_ROM);
}
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -7,9 +7,7 @@
#include "Common/CommonTypes.h"
#include "Core/HW/DSPHLE/UCodes/UCodes.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
class DSPHLE;
@ -23,5 +21,4 @@ public:
void HandleMail(u32 mail) override;
void Update() override;
};
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -12,9 +12,7 @@
#include "Core/HW/DSPHLE/MailHandler.h"
#include "Core/HW/DSPHLE/UCodes/UCodes.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
void ProcessGBACrypto(u32 address)
{
@ -137,5 +135,4 @@ void GBAUCode::HandleMail(u32 mail)
WARN_LOG(DSPHLE, "GBAUCode - unknown command: %08x", mail);
}
}
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -7,9 +7,7 @@
#include "Common/CommonTypes.h"
#include "Core/HW/DSPHLE/UCodes/UCodes.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
class DSPHLE;
@ -27,5 +25,4 @@ struct GBAUCode : public UCodeInterface
void HandleMail(u32 mail) override;
void Update() override;
};
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -10,9 +10,7 @@
#include "Core/HW/DSPHLE/MailHandler.h"
#include "Core/HW/DSPHLE/UCodes/UCodes.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
INITUCode::INITUCode(DSPHLE* dsphle, u32 crc) : UCodeInterface(dsphle, crc)
{
@ -39,5 +37,4 @@ void INITUCode::Update()
void INITUCode::HandleMail(u32 mail)
{
}
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -7,9 +7,7 @@
#include "Common/CommonTypes.h"
#include "Core/HW/DSPHLE/UCodes/UCodes.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
class DSPHLE;
@ -24,5 +22,4 @@ public:
void Update() override;
void Init();
};
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -20,9 +20,7 @@
#include "Core/HW/DSPHLE/MailHandler.h"
#include "Core/HW/DSPHLE/UCodes/UCodes.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
ROMUCode::ROMUCode(DSPHLE* dsphle, u32 crc)
: UCodeInterface(dsphle, crc), m_current_ucode(), m_boot_task_num_steps(0), m_next_parameter(0)
@ -130,5 +128,4 @@ void ROMUCode::DoState(PointerWrap& p)
DoStateShared(p);
}
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -7,9 +7,7 @@
#include "Common/CommonTypes.h"
#include "Core/HW/DSPHLE/UCodes/UCodes.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
class DSPHLE;
@ -41,5 +39,4 @@ private:
void BootUCode();
};
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -29,9 +29,7 @@
#include "Core/HW/DSPHLE/UCodes/Zelda.h"
#include "Core/HW/Memmap.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
constexpr bool ExramRead(u32 address)
{
@ -306,5 +304,4 @@ std::unique_ptr<UCodeInterface> UCodeFactory(u32 crc, DSPHLE* dsphle, bool wii)
return nullptr;
}
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -11,9 +11,7 @@
class PointerWrap;
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
class CMailHandler;
class DSPHLE;
@ -106,5 +104,4 @@ private:
};
std::unique_ptr<UCodeInterface> UCodeFactory(u32 crc, DSPHLE* dsphle, bool wii);
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -18,9 +18,7 @@
#include "Core/HW/DSPHLE/UCodes/GBA.h"
#include "Core/HW/DSPHLE/UCodes/UCodes.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
// Uncomment this to have a strict version of the HLE implementation, which
// PanicAlerts on recoverable unknown behaviors instead of silently ignoring
@ -1854,5 +1852,4 @@ void ZeldaAudioRenderer::DoState(PointerWrap& p)
p.Do(m_buf_front_left_reverb_last8);
p.Do(m_buf_front_right_reverb_last8);
}
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -10,9 +10,7 @@
#include "Common/CommonTypes.h"
#include "Core/HW/DSPHLE/UCodes/UCodes.h"
namespace DSP
{
namespace HLE
namespace DSP::HLE
{
class DSPHLE;
@ -286,5 +284,4 @@ private:
// Main object handling audio rendering logic and state.
ZeldaAudioRenderer m_renderer;
};
} // namespace HLE
} // namespace DSP
} // namespace DSP::HLE

View File

@ -13,9 +13,7 @@
#include "Core/DSP/DSPMemoryMap.h"
#include "Core/HW/DSPLLE/DSPSymbols.h"
namespace DSP
{
namespace LLE
namespace DSP::LLE
{
void DSPPatches::Patch(std::size_t index)
{
@ -312,5 +310,4 @@ void DSPDebugInterface::Clear()
ClearPatches();
ClearWatches();
}
} // namespace LLE
} // namespace DSP
} // namespace DSP::LLE

View File

@ -10,9 +10,7 @@
#include "Common/CommonTypes.h"
#include "Common/DebugInterface.h"
namespace DSP
{
namespace LLE
namespace DSP::LLE
{
class DSPPatches : public Common::Debug::MemoryPatches
{
@ -79,5 +77,4 @@ private:
Common::Debug::Watches m_watches;
DSPPatches m_patches;
};
} // namespace LLE
} // namespace DSP
} // namespace DSP::LLE

View File

@ -24,9 +24,7 @@
// core isn't used, for example in an asm/disasm tool, then most of these
// can be stubbed out.
namespace DSP
{
namespace Host
namespace DSP::Host
{
u8 ReadHostMemory(u32 addr)
{
@ -84,5 +82,4 @@ void UpdateDebugger()
{
Host_RefreshDSPDebuggerWindow();
}
} // namespace Host
} // namespace DSP
} // namespace DSP::Host

View File

@ -30,9 +30,7 @@
#include "Core/HW/Memmap.h"
#include "Core/Host.h"
namespace DSP
{
namespace LLE
namespace DSP::LLE
{
static Common::Event s_dsp_event;
static Common::Event s_ppc_event;
@ -340,5 +338,4 @@ void DSPLLE::PauseAndLock(bool do_lock, bool unpause_on_unlock)
else
m_dsp_thread_mutex.unlock();
}
} // namespace LLE
} // namespace DSP
} // namespace DSP::LLE

View File

@ -14,9 +14,7 @@
class PointerWrap;
namespace DSP
{
namespace LLE
namespace DSP::LLE
{
class DSPLLE : public DSPEmulator
{
@ -49,5 +47,4 @@ private:
Common::Flag m_is_running;
std::atomic<u32> m_cycle_count{};
};
} // namespace LLE
} // namespace DSP
} // namespace DSP::LLE

View File

@ -14,9 +14,7 @@
#include "Core/DSP/DSPCore.h"
#include "Core/DSP/DSPDisassembler.h"
namespace DSP
{
namespace Symbols
namespace DSP::Symbols
{
DSPSymbolDB g_dsp_symbol_db;
@ -106,6 +104,4 @@ void Clear()
lines.clear();
line_counter = 0;
}
} // namespace Symbols
} // namespace DSP
} // namespace DSP::Symbols

View File

@ -9,9 +9,7 @@
#include "Common/CommonTypes.h"
#include "Common/SymbolDB.h"
namespace DSP
{
namespace Symbols
namespace DSP::Symbols
{
class DSPSymbolDB : public Common::SymbolDB
{
@ -31,6 +29,4 @@ int Addr2Line(u16 address);
int Line2Addr(int line); // -1 for not found
const char* GetLineText(int line);
} // namespace Symbols
} // namespace DSP
} // namespace DSP::Symbols

View File

@ -15,23 +15,23 @@ namespace DiscIO
{
struct Partition;
}
namespace DVDInterface
{
enum class ReplyType : u32;
}
namespace DiscIO
{
enum class Platform;
class Volume;
} // namespace DiscIO
namespace IOS
{
namespace ES
namespace IOS::ES
{
class TMDReader;
class TicketReader;
} // namespace ES
} // namespace IOS
} // namespace IOS::ES
namespace DVDThread
{

View File

@ -11,17 +11,14 @@
#include "Common/CommonTypes.h"
namespace IOS
{
namespace HLE
namespace IOS::HLE
{
namespace FS
{
class FileSystem;
}
class IOSC;
} // namespace HLE
} // namespace IOS
} // namespace IOS::HLE
namespace WiiSave
{

View File

@ -15,11 +15,7 @@
#include "Core/HW/SystemTimers.h"
#include "Core/IOS/FS/FileSystem.h"
namespace IOS
{
namespace HLE
{
namespace Device
namespace IOS::HLE::Device
{
using namespace IOS::HLE::FS;
@ -587,6 +583,4 @@ IPCCommandResult FS::Shutdown(const Handle& handle, const IOCtlRequest& request)
INFO_LOG(IOS_FS, "Shutdown");
return GetFSReply(IPC_SUCCESS);
}
} // namespace Device
} // namespace HLE
} // namespace IOS
} // namespace IOS::HLE::Device

View File

@ -15,11 +15,7 @@
class PointerWrap;
namespace IOS
{
namespace HLE
{
namespace Device
namespace IOS::HLE::Device
{
constexpr IOS::HLE::FS::Fd INVALID_FD = 0xffffffff;
@ -90,6 +86,4 @@ private:
u16 m_cache_chain_index = 0;
bool m_dirty_cache = false;
};
} // namespace Device
} // namespace HLE
} // namespace IOS
} // namespace IOS::HLE::Device

View File

@ -57,9 +57,7 @@
#include "Core/PowerPC/PowerPC.h"
#include "Core/WiiRoot.h"
namespace IOS
{
namespace HLE
namespace IOS::HLE
{
static std::unique_ptr<EmulationKernel> s_ios;
@ -801,5 +799,4 @@ EmulationKernel* GetIOS()
{
return s_ios.get();
}
} // namespace HLE
} // namespace IOS
} // namespace IOS::HLE

View File

@ -19,9 +19,7 @@
class PointerWrap;
namespace IOS
{
namespace HLE
namespace IOS::HLE
{
namespace FS
{
@ -146,5 +144,4 @@ void Init();
void Shutdown();
EmulationKernel* GetIOS();
} // namespace HLE
} // namespace IOS
} // namespace IOS::HLE

View File

@ -17,13 +17,11 @@ namespace DiscIO
{
class WiiWAD;
}
namespace IOS
{
namespace HLE
namespace IOS::HLE
{
class Kernel;
}
} // namespace IOS
namespace WiiUtils
{