# | Line 193 | Line 193 | int CALLBACK selector(HWND hwndDlg, UINT | |
---|---|---|
193 | GetCurrentDirectory(MAX_PATH + 1, directory); | |
194 | if (debug) cerr << "directory = " << directory << "\n"; | |
195 | ||
196 | < | char* data = new char[MAX_PATH + 1]; |
196 | > | char* data = new char[strlen(directory) + 12]; |
197 | sprintf(data, "%s\\data\\*.mix", directory); | |
198 | delete [] directory; | |
199 | if (debug) cerr << "data = " << data << "\n"; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |