Robert P. Ewing wrote:
- How do I flip back and forth between text and graphics
screens? [...]
GrSetMode ( GR_default_graphics, 0, 0, 0, 0, 0 ); (* set graphics mode *) GrSetMode ( GR_default_text, 0, 0, 0, 0, 0 ); (* set text mode *)
Do you mean this?
- How do I -- or can I? -- control the 0-15th entries in
the palette? I have no trouble changing 16-255, but the bottom 16 seem resistant.
GrSetColor ( color, r, g, b );
has the desired effect (for me at least). A cleaner solution would probably be to `FreeColor' the first 16 palette entries, but this does not seem to work.
Somebody knows?
Peter