source: abuse/trunk/src/imlib/macs.h @ 521

Last change on this file since 521 was 518, checked in by Sam Hocevar, 12 years ago

imlib: refactor dirty_rect clipping coordiantes so that the upper
bound is no longer inclusive. It will make things easier in the future.

  • Property svn:keywords set to Id
File size: 736 bytes
RevLine 
[56]1/*
2 *  Abuse - dark 2D side-scrolling platform game
3 *  Copyright (c) 1995 Crack dot Com
[494]4 *  Copyright (c) 2005-2011 Sam Hocevar <sam@hocevar.net>
[56]5 *
6 *  This software was released into the Public Domain. As with most public
7 *  domain software, no warranty is made or implied by Crack dot Com or
8 *  Jonathan Clark.
9 */
10
[2]11#ifndef MACS__
12#define MACS__
13#include "system.h"
14#include <stdio.h>
15#define ERROR(x,st) { if (!(x)) \
16   { printf("Error on line %d of %s : %s\n", \
17     __LINE__,__FILE__,st); exit(1); } }
18
19// These macros should be removed for the non-debugging version
20#ifdef NO_CHECK
[124]21#define CONDITION(x,st)
22#define CHECK(x)
[2]23#else
24#define CONDITION(x,st) ERROR(x,st)
25#define CHECK(x) CONDITION(x,"Check stop");
26#endif
27
28#endif
Note: See TracBrowser for help on using the repository browser.