home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD1.bin
/
new
/
util
/
cdity
/
yak
/
src
/
blackborder.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-10-02
|
423b
|
28 lines
#include <exec/types.h>
#include <proto/intuition.h>
#include <proto/graphics.h>
#include <graphics/gfxbase.h>
#include <graphics/view.h>
#include <hardware/custom.h>
/*
** Enable or disable black border on all screens, 3.0+ only
**
*/
__regargs void
ToggleBlackBorder( BOOL toggle )
{
if (toggle)
{
GfxBase->BP3Bits |= BPLCON3_BRDNBLNK;
}
else
{
GfxBase->BP3Bits &= ~BPLCON3_BRDNBLNK;
}
RemakeDisplay();
}