]> 4ch.mooo.com Git - 16.git/commitdiff
makefile polished!!
authorsparky4 <sparky4@cock.li>
Fri, 6 Jan 2017 17:43:56 +0000 (11:43 -0600)
committersparky4 <sparky4@cock.li>
Fri, 6 Jan 2017 17:43:56 +0000 (11:43 -0600)
src/lib/16_tdef.h

index d38d8a9b2adcfd396a59d0f629d73bee38506567..dc58fc810fd1bc73c6fa7b39074febd4c8bcf4ee 100755 (executable)
@@ -49,7 +49,7 @@ typedef struct {
 } bitmap_t;\r
 \r
 typedef struct {\r
-       byte huge **data;\r
+       byte far **data;\r
        word ntiles;   /* the number of tiles */\r
        word twidth;   /* width of the tiles */\r
        word theight;  /* height of the tiles */\r
@@ -57,7 +57,7 @@ typedef struct {
 } tileset_t;\r
 \r
 typedef struct {\r
-       byte huge *plane[4];     /* 4 planes of image data */\r
+       byte far *plane[4];     /* 4 planes of image data */\r
        word width;         /* width of the image (spread across 4 planes) */\r
        word height;        /* height of the image (spread across 4 planes) */\r
        word pwidth;        /* the number of bytes in each plane */\r
@@ -87,6 +87,7 @@ typedef struct {
        sword delta;                    // How much should we shift the page for smooth scrolling\r
        //enum direction d;                     // Direction we should shift the page\r
 } page_t;\r
+\r
 typedef struct\r
 {\r
        //sprite ....\r
@@ -132,7 +133,7 @@ typedef struct
        byte num_of_pages;      //number of actual pages\r
        boolean __near p;                       //render page number\r
        boolean __near r;                       //page flip if true\r
-       word pr[MAXPAGE][4];    //render sections of pages\r
+       word pr[MAXPAGE][4];    //render sections of pages (this is supposed to be set up to draw sections of the screen if updated)\r
        //0000word startclk; float clk, tickclk;        //timer\r
 } video_t;\r
 \r
@@ -149,7 +150,6 @@ typedef struct mmblockstruct
        word    blob;   //for data larger than 64k\r
        unsigned        attributes;\r
        memptr          *useptr;        // pointer to the segment start\r
-       //huge struct mmblockstruct huge *next;\r
        struct mmblockstruct far *next;\r
 } mmblocktype;\r
 \r
@@ -163,7 +163,6 @@ typedef struct
 {\r
        memptr bufferseg;\r
        boolean         mmstarted, bombonerror, mmerror;\r
-       //huge void huge        *farheap;\r
        void far        *farheap;\r
 #ifdef __BORLANDC__\r
        void    *nearheap;\r
@@ -175,7 +174,6 @@ typedef struct
        word numUMBs,UMBbase[MAXUMBS];\r
        word                    totalEMSpages, freeEMSpages, EMSpagesmapped, EMSHandle, EMSPageFrame;\r
        //dword numUMBs,UMBbase[MAXUMBS];\r
-       //huge mmblocktype      huge mmblocks[MAXBLOCKS],huge *mmhead,huge *mmfree,huge *mmrover,huge *mmnew;\r
        mmblocktype     far mmblocks[MAXBLOCKS],far *mmhead,far *mmfree,far *mmrover,far *mmnew;\r
 } mminfo_t;\r
 \r