Subversion Repositories Games.Carmageddon

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20 pmbaty 1
#ifdef __MSDOS__ // Pierre-Marie Baty -- compile guard
2
 
3
#include "dosio.h"
4
#include "CORE/PIXELMAP/pixelmap.h"
5
#include "harness/hooks.h"
6
#include "harness/trace.h"
7
#include <stddef.h>
8
 
9
br_pixelmap* DOSGfxBegin(char* setup_string) {
10
    LOG_TRACE("(\"%s\")", setup_string);
11
 
12
    return BrPixelmapAllocate(BR_PMT_INDEX_8, 320, 200, NULL, BR_PMAF_NORMAL);
13
}
14
 
15
#endif // __MSDOS__