summaryrefslogtreecommitdiff
path: root/src/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug.h')
-rw-r--r--src/debug.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/src/debug.h b/src/debug.h
deleted file mode 100644
index 307766806..000000000
--- a/src/debug.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * The ManaPlus Client
- * Copyright (C) 2011-2017 The ManaPlus Developers
- *
- * This file is part of The ManaPlus Client.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include "localconsts.h"
-
-// #define DEBUG_JOYSTICK 1
-
-#ifdef ENABLE_MEM_DEBUG
-
-// #define _DEBUG_NEW_EMULATE_MALLOC 1
-#include "debug/nvwa/debug_new.h"
-
-#endif // ENABLE_MEM_DEBUG
-
-#ifdef DEBUG_SDL_SURFACES
-
-#define MIMG_LoadPNG_RW(src) FakeIMG_LoadPNG_RW(src, __FILE__, __LINE__)
-#define MIMG_LoadJPG_RW(src) FakeIMG_LoadJPG_RW(src, __FILE__, __LINE__)
-#define MSDL_FreeSurface(s) FakeSDL_FreeSurface(s, __FILE__, __LINE__)
-#define MSDL_CreateRGBSurface(flags, w, h, d, r, g, b, a) \
- FakeSDL_CreateRGBSurface(flags, w, h, d, r, g, b, a, __FILE__, __LINE__)
-#define MSDL_ConvertSurface(src, fmt, flags) \
- FakeSDL_ConvertSurface(src, fmt, flags, __FILE__, __LINE__)
-#define MTTF_RenderUTF8_Blended(font, text, fg) \
- FakeTTF_RenderUTF8_Blended(font, text, fg, __FILE__, __LINE__)
-#define MIMG_Load(file) FakeIMG_Load(file, __FILE__, __LINE__)
-#define MSDL_DisplayFormatAlpha(surface) \
- FakeSDL_DisplayFormatAlpha(surface, __FILE__, __LINE__)
-#define MSDL_DisplayFormat(surface) \
- FakeSDL_DisplayFormat(surface, __FILE__, __LINE__)
-
-#else // ENABLE_SDL_DEBUG
-
-#define MIMG_LoadPNG_RW(src) IMG_LoadPNG_RW(src)
-#define MIMG_LoadJPG_RW(src) IMG_LoadJPG_RW(src)
-#define MSDL_FreeSurface(surface) SDL_FreeSurface(surface)
-#define MSDL_CreateRGBSurface(flags, w, h, d, r, g, b, a) \
- SDL_CreateRGBSurface(flags, w, h, d, r, g, b, a)
-#define MSDL_ConvertSurface(src, fmt, flags) \
- SDL_ConvertSurface(src, fmt, flags)
-#define MTTF_RenderUTF8_Blended(font, text, fg) \
- TTF_RenderUTF8_Blended(font, text, fg)
-#define MIMG_Load(file) IMG_Load(file)
-#define MSDL_DisplayFormatAlpha(surface) SDL_DisplayFormatAlpha(surface)
-#define MSDL_DisplayFormat(surface) SDL_DisplayFormat(surface)
-
-#endif // ENABLE_SDL_DEBUG