| 105 | } |
| 106 | |
| 107 | void InsertCDDlg(const char *fileName) |
| 108 | { |
| 109 | char text[1024]; |
| 110 | snprintf( |
| 111 | text, |
| 112 | 1024, |
| 113 | "Unable to open %s.\n" |
| 114 | "\n" |
| 115 | "Make sure that it is in the game folder and that the file name is in all lowercase.", |
| 116 | fileName); |
| 117 | |
| 118 | UiErrorOkDialog("Data File Error", text); |
| 119 | app_fatal(NULL); |
| 120 | } |
| 121 | |
| 122 | void DirErrorDlg(char *error) |
| 123 | { |