AldeBasiClib/AldeBasiClib.c

17 lines
229 B
C

#include "AldeBasiClib.h"
void PlotChg(int x, int y)
{
if(PxlTest(x,64-y) == ML_BLACK)PlotOff(x,y);
else PlotOn(x,y);
}
void PxlChg(int x, int y)
{
if(PxlTest(x,y) == ML_BLACK)PxlOff(x,y);
else PxlOn(x,y);
}