ZealOS/Demo/Graphics/ScrnCapture.HC
2020-02-15 14:01:48 -06:00

15 lines
252 B
HolyC
Executable file

//See $LK,"::/Demo/Games/Stadium/StadiumGen.HC"$.
U0 Main()
{
"Capture scrn...\n";
PressAKey;
GRScrnCaptureWrite("~/DemoScrnShot");
"View captured scrn...\n";
PressAKey;
GRScrnCaptureRead("~/DemoScrnShot");
PressAKey;
DCFill;
}
Main;