| 290 | } |
| 291 | |
| 292 | void SaveScriptCode(const char *filename, tD3XProgram *program) { |
| 293 | CFILE *file; |
| 294 | char file_path[256]; |
| 295 | |
| 296 | // write out default script program |
| 297 | ddio_MakePath(file_path, LocalLevelsDir, filename, NULL); |
| 298 | file = cfopen(file_path, "wb"); |
| 299 | // D3XSaveProgram(file, program); // LGT: function undefined |
| 300 | mprintf(0, "Saving %s.\n", filename); |
| 301 | cfclose(file); |
| 302 | } |
| 303 | |
| 304 | ////////////////////////////////////////////////////////////////////////////// |
| 305 | // LIST FUNCTIONS |
no test coverage detected