| 83 | } |
| 84 | |
| 85 | static void FreeUNIF(void) { |
| 86 | int x; |
| 87 | if (UNIFchrrama) { |
| 88 | free(UNIFchrrama); UNIFchrrama = 0; |
| 89 | } |
| 90 | if (boardname) { |
| 91 | free(boardname); boardname = 0; |
| 92 | } |
| 93 | for (x = 0; x < 32; x++) { |
| 94 | if (malloced[x]) { |
| 95 | free(malloced[x]); malloced[x] = 0; |
| 96 | } |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | static void ResetUNIF(void) { |
| 101 | int x; |