dolphin/Source/Core/Core/HW
Lioncash 248a04f68f Memmap: Remove unnecessary const on function declaration parameters
const, when used on value type parameters in the declaration,
is superfluous. This doesn't really convey any information to take note
of when using the function. This only matters in the definition when you
want to prevent accidental modification.

e.g.

// Header
void CalculateSomething(int lhs, int rhs);

// Definition
void CalculateSomething(const int lhs, const int rhs)
{
  // lhs and rhs can't accidentally be modified
}
2017-03-06 14:08:07 -05:00
..
DSPHLE Common: Move byte swapping utilities into their own header 2017-03-03 17:18:18 -05:00
DSPLLE IOS: Implement MIOS functionality 2017-02-08 15:07:34 +01:00
EXI GCI Folder support for TAS Recording/Playback 2017-03-05 19:12:09 -05:00
SI SI_Device: Remove const specifiers from SIDevice_Create declaration's parameters 2017-01-22 22:34:23 -05:00
WiimoteEmu Common: Move byte swapping utilities into their own header 2017-03-03 17:18:18 -05:00
WiimoteReal Common: Move byte swapping utilities into their own header 2017-03-03 17:18:18 -05:00
AudioInterface.cpp specify custom brace style to fix unions 2017-01-05 12:55:13 +01:00
AudioInterface.h Reformat all the things. Have fun with merge conflicts. 2016-06-24 10:43:46 +02:00
CPU.cpp PowerPC: Convert CoreMode enum into an enum class 2017-02-04 19:34:56 -05:00
CPU.h Reformat all the things. Have fun with merge conflicts. 2016-06-24 10:43:46 +02:00
DSP.cpp JitInterface: Convert includes into forward declarations where applicable 2017-03-02 13:20:29 -05:00
DSP.h IOS: Implement MIOS functionality 2017-02-08 15:07:34 +01:00
DVDInterface.cpp Merge pull request #4883 from JosJuice/dvd-timing-address-translation-2 2017-02-15 21:12:42 +01:00
DVDInterface.h IOS: Implement MIOS functionality 2017-02-08 15:07:34 +01:00
DVDThread.cpp DVDThread: Remove s_dvd_thread_done_working and fix race condition 2016-10-15 15:28:15 +02:00
DVDThread.h DVDInterface: Prepare for reading DTK data in DVDThread 2016-10-15 15:27:54 +02:00
GCKeyboard.cpp ControllerEmu: Separate ControlGroup from ControllerEmu 2017-02-09 18:18:52 -05:00
GCKeyboard.h ControllerEmu: Separate ControlGroup from ControllerEmu 2017-02-09 18:18:52 -05:00
GCKeyboardEmu.cpp InputCommon: move Setting classes out of ControlGroup 2017-03-02 18:08:37 -08:00
GCKeyboardEmu.h ControllerEmu: Separate ControlGroup from ControllerEmu 2017-02-09 18:18:52 -05:00
GCMemcard.cpp Common: Move byte swapping utilities into their own header 2017-03-03 17:18:18 -05:00
GCMemcard.h Common: Move byte swapping utilities into their own header 2017-03-03 17:18:18 -05:00
GCMemcardDirectory.cpp GCMemcard: Const-correctness changes 2017-01-12 20:01:19 -05:00
GCMemcardDirectory.h GCMemcard: Const-correctness changes 2017-01-12 20:01:19 -05:00
GCMemcardRaw.cpp IniFile: Handle s64/u64 values 2017-02-25 00:03:20 -05:00
GCMemcardRaw.h GCMemcard: Const-correctness changes 2017-01-12 20:01:19 -05:00
GCPad.cpp ControllerEmu: Separate ControlGroup from ControllerEmu 2017-02-09 18:18:52 -05:00
GCPad.h ControllerEmu: Separate ControlGroup from ControllerEmu 2017-02-09 18:18:52 -05:00
GCPadEmu.cpp InputCommon: move Setting classes out of ControlGroup 2017-03-02 18:08:37 -08:00
GCPadEmu.h ControllerEmu: Separate ControlGroup from ControllerEmu 2017-02-09 18:18:52 -05:00
GPFifo.cpp Common: Move byte swapping utilities into their own header 2017-03-03 17:18:18 -05:00
GPFifo.h Reformat all the things. Have fun with merge conflicts. 2016-06-24 10:43:46 +02:00
HW.cpp Get rid of a singleton for NAND shared contents 2017-02-10 22:46:38 +01:00
HW.h Reformat all the things. Have fun with merge conflicts. 2016-06-24 10:43:46 +02:00
Memmap.cpp Common: Move byte swapping utilities into their own header 2017-03-03 17:18:18 -05:00
Memmap.h Memmap: Remove unnecessary const on function declaration parameters 2017-03-06 14:08:07 -05:00
MemoryInterface.cpp specify custom brace style to fix unions 2017-01-05 12:55:13 +01:00
MemoryInterface.h Reformat all the things. Have fun with merge conflicts. 2016-06-24 10:43:46 +02:00
MMIO.cpp Reformat all the things. Have fun with merge conflicts. 2016-06-24 10:43:46 +02:00
MMIO.h MMIO: Get rid of a TODO regarding tuples 2017-01-27 02:54:07 -05:00
MMIOHandlers.h Reformat all the things. Have fun with merge conflicts. 2016-06-24 10:43:46 +02:00
ProcessorInterface.cpp Only allow reset/power when core is running 2017-01-19 22:08:13 +01:00
ProcessorInterface.h Shut down Wii software gracefully 2016-10-01 13:06:04 +02:00
Sram.cpp Common: Move byte swapping utilities into their own header 2017-03-03 17:18:18 -05:00
Sram.h Sram: Make SRAM dumps const 2017-01-30 17:44:03 -05:00
StreamADPCM.cpp Reformat all the things. Have fun with merge conflicts. 2016-06-24 10:43:46 +02:00
StreamADPCM.h Reformat all the things. Have fun with merge conflicts. 2016-06-24 10:43:46 +02:00
SystemTimers.cpp Adjust event times after a PPC clock change 2017-02-08 16:22:27 +01:00
SystemTimers.h IOS: Implement MIOS functionality 2017-02-08 15:07:34 +01:00
VideoInterface.cpp VideoBackendBase: Convert FieldType into an enum class 2017-01-23 03:54:01 -05:00
VideoInterface.h Merge pull request #4544 from JosJuice/region-enum 2017-01-13 09:19:27 +13:00
WII_IPC.cpp IOS: Reorganise the source files and IPC_HLE→IOS 2017-01-18 20:43:10 +01:00
WII_IPC.h IPC_HLE: Namespace IOS HLE 2017-01-17 20:46:58 -05:00
Wiimote.cpp ControllerEmu: Separate ControlGroup from ControllerEmu 2017-02-09 18:18:52 -05:00
Wiimote.h ControllerEmu: Separate ControlGroup from ControllerEmu 2017-02-09 18:18:52 -05:00
WiiSaveCrypted.cpp Common: Move byte swapping utilities into their own header 2017-03-03 17:18:18 -05:00
WiiSaveCrypted.h Reformat all the things. Have fun with merge conflicts. 2016-06-24 10:43:46 +02:00