]> icculus.org git repositories - btb/d2x.git/blob - misc/errtest.c
memset ogl font bitmap data since the copy function leaves some (unused) parts uninit...
[btb/d2x.git] / misc / errtest.c
1
2 #define DEBUG_ON 1
3
4 #include <stdio.h>
5
6 #include "error.h"
7
8 main(int argc,char **argv)
9 {
10         error_init("Thank-you for running ERRTEST!");
11
12         Assert(argc!=0);
13 //      Assert(argc==5);
14
15         Error("test of error, argc=%d, argv=%x",argc,argv);
16 }
17
18 ΓΏ