home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_progs
/
miscutil
/
setpalns.lzh
/
SETPALORNTSC
/
SETNTSC.C
< prev
next >
Wrap
C/C++ Source or Header
|
1991-08-16
|
467b
|
21 lines
/* P. Kittel Ffm 21.7.87, 6.8.87 */
/* Setzen auf NTSC */
#include <intuition/intuition.h>
#include <graphics/gfxmacros.h>
#include <graphics/gfxbase.h>
struct GfxBase *GfxBase;
#define GRAPHICS_REV 33
main()
{
GfxBase = (struct GfxBase *)
OpenLibrary("graphics.library",GRAPHICS_REV);
if(GfxBase == NULL) exit (FALSE);
GfxBase->DisplayFlags = (GfxBase->DisplayFlags) & (!PAL);
GfxBase->NormalDisplayRows = 200;
CloseLibrary(GfxBase);
}