mirror of
https://github.com/id-Software/idsetup.git
synced 2026-03-19 16:39:39 +01:00
The source of the setup program included with DOOM, Final DOOM, Strife, etc.
This commit is contained in:
57
DEBUG.BAK
Normal file
57
DEBUG.BAK
Normal file
@@ -0,0 +1,57 @@
|
||||
#include <stdlib.h>
|
||||
#include <conio.h>
|
||||
#include "setup.h"
|
||||
|
||||
#ifdef DEBUG
|
||||
pup_t far *puplist[]=
|
||||
{
|
||||
&askpres,
|
||||
&cmodem,
|
||||
&consel,
|
||||
&control,
|
||||
&cserial,
|
||||
&cwarp,
|
||||
&gusirqer,
|
||||
&idcard,
|
||||
&idjoysel,
|
||||
&idkeysel,
|
||||
&idmain2,
|
||||
&idmousel,
|
||||
&irqerr,
|
||||
¯os,
|
||||
&mcard,
|
||||
&midiport,
|
||||
&modemchs,
|
||||
&modsave,
|
||||
&mousentr,
|
||||
&mouspres,
|
||||
&netplay,
|
||||
&netplay2,
|
||||
&netsave,
|
||||
&netserr,
|
||||
&netwk2,
|
||||
&numdig,
|
||||
&phonelst,
|
||||
&quitwin,
|
||||
&sbdma,
|
||||
&sbirq,
|
||||
&sbport,
|
||||
&sersave,
|
||||
&show,
|
||||
&sockerr,
|
||||
&title,
|
||||
NULL
|
||||
};
|
||||
|
||||
void ShowAllPups(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
i = 0;
|
||||
while(puplist[i])
|
||||
{
|
||||
DrawPup(puplist[i++]);
|
||||
getch();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user