/* P. Kittel Ffm 21.7.87, 6.8.87 */
/* Setzen auf PAL */

#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 = 256;

   CloseLibrary(GfxBase);
}
