Fix GXPeekARGB, this fixes Killer 7, and Wind Waker's pictograph quest :D

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4034 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
sl1nk3.s
2009-08-22 13:22:35 +00:00
parent f7bee7347a
commit 652639d1c4
3 changed files with 21 additions and 16 deletions

View File

@ -18,17 +18,15 @@
#ifndef _MEMMAP_H
#define _MEMMAP_H
// Enable memory checks in the Debug/DebugFast builds, but NOT in release
#if MAX_LOGLEVEL >= 4
#if _DEBUG
#define ENABLE_MEM_CHECK
#endif
#endif
// Includes
#include <string>
#include "Common.h"
// Enable memory checks in the Debug/DebugFast builds, but NOT in release
#if _DEBUG || DEBUGFAST
#define ENABLE_MEM_CHECK
#endif
// Global declarations
class PointerWrap;