diff --git a/Core/AVIDump.cpp b/Core/AVIDump.cpp index 226f44dabd..e118c390db 100644 --- a/Core/AVIDump.cpp +++ b/Core/AVIDump.cpp @@ -274,6 +274,6 @@ void AVIDump::CheckResolution(int width, int height) { s_current_width = width; s_current_height = height; } -#endif USE_FFMPEG +#endif // USE_FFMPEG } #endif diff --git a/Core/MemMap.cpp b/Core/MemMap.cpp index 4fc3a0b3a8..9a939163ec 100644 --- a/Core/MemMap.cpp +++ b/Core/MemMap.cpp @@ -99,7 +99,7 @@ static MemoryView views[] = // Starts at memory + 31 MB. {&m_pPhysicalRAM2, 0x09F00000, g_MemorySize, MV_IS_EXTRA1_RAM}, {&m_pUncachedRAM2, 0x49F00000, g_MemorySize, MV_MIRROR_PREVIOUS | MV_IS_EXTRA1_RAM}, - // {&m_pKernelRAM2, 0x89F00000, g_MemorySize, MV_MIRROR_PREVIOUS | MV_IS_EXTRA1_RAM}, + {&m_pKernelRAM2, 0x89F00000, g_MemorySize, MV_MIRROR_PREVIOUS | MV_IS_EXTRA1_RAM | MV_KERNEL}, // Starts at memory + 31 * 2 MB. {&m_pPhysicalRAM3, 0x0BE00000, g_MemorySize, MV_IS_EXTRA2_RAM}, {&m_pUncachedRAM3, 0x4BE00000, g_MemorySize, MV_MIRROR_PREVIOUS | MV_IS_EXTRA2_RAM},