home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD1.img
/
d1xx
/
d162
/
setpalorntsc
/
setntsc.c
< prev
next >
Wrap
C/C++ Source or Header
|
1988-10-02
|
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);
}