home *** CD-ROM | disk | FTP | other *** search
-
- /************************************************************************/
- /* Load palette registers from a table */
- /* Which has BLACK and WHITE interchanged */
- /************************************************************************/
-
- invert_B_n_W()
- {
- /* Reverse video palette */
- static int table[16] = { 15, 0, 2, 3, 4, 5, 6, 0,
- 8, 9,10,11,12,13,14, 0};
- write_palette(table);
- }