change parameter names to match our coding style while we're at it

This commit is contained in:
BhaaL
2017-03-13 17:51:08 +01:00
parent d0d91f2530
commit 1470c346b6
3 changed files with 19 additions and 19 deletions

View File

@ -41,18 +41,18 @@ public:
private:
static bool DVDRead(u64 dvd_offset, u32 output_address, u32 length, bool decrypt);
static void RunFunction(u32 _iAddr);
static void RunFunction(u32 address);
static void UpdateDebugger_MapLoaded();
static bool Boot_ELF(const std::string& filename);
static bool Boot_WiiWAD(const std::string& filename);
static bool EmulatedBS2_GC(bool skipAppLoader = false);
static bool EmulatedBS2_GC(bool skip_app_loader = false);
static bool EmulatedBS2_Wii();
static bool EmulatedBS2(bool _bIsWii);
static bool Load_BS2(const std::string& _rBootROMFilename);
static void Load_FST(bool _bIsWii);
static bool EmulatedBS2(bool is_wii);
static bool Load_BS2(const std::string& boot_rom_filename);
static void Load_FST(bool is_wii);
static bool SetupWiiMemory(u64 ios_title_id);
};