Gered
83aaf0d5b9
borland conditionals have been removed. asm sources converted fully to tasm ideal mode. keyboard and timer interrupt handlers moved to c code copied from fdemo watcom sources
28 lines
654 B
C
28 lines
654 B
C
#include "ack3d.h"
|
|
#include "ackeng.h"
|
|
|
|
|
|
void AckBuildCeilingFloor (UCHAR *, short, short, short, short, short, short);
|
|
|
|
//±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±
|
|
// Generates a solid floor and ceiling
|
|
//±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±
|
|
short AckBuildBackground (ACKENG * ae)
|
|
{
|
|
|
|
/* Let the assembly routine do all the hard work */
|
|
|
|
#if FLOOR_ACTIVE
|
|
#else
|
|
AckBuildCeilingFloor (ae->BkgdBuffer,
|
|
ae->LightFlag,
|
|
ae->TopColor,
|
|
ae->BottomColor,
|
|
ae->WinStartY,
|
|
ae->WinEndY,
|
|
ae->CenterRow);
|
|
#endif
|
|
|
|
return (0);
|
|
}
|