| 1033 | VARFP(clockfix, 0, 0, 1, clockreset()); |
| 1034 | |
| 1035 | const char *rndmapname() |
| 1036 | { |
| 1037 | vector<char *> maps; |
| 1038 | listfiles("packages/maps/official", "cgz", maps); |
| 1039 | if (maps.length() > 0) |
| 1040 | { |
| 1041 | char *map = newstring(maps[rnd(maps.length())]); |
| 1042 | maps.deletearrays(); |
| 1043 | return map; |
| 1044 | } |
| 1045 | else return ""; |
| 1046 | } |
| 1047 | |
| 1048 | #define AUTOSTARTPATH "config" PATHDIVS "autostart" PATHDIVS |
| 1049 |
no test coverage detected