Fix from Michael Wardle in bell error message

[originally from svn r3619]
This commit is contained in:
Jacob Nevins 2003-12-03 23:32:47 +00:00
Родитель e9b9df0fb9
Коммит 5438acd044
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -4436,7 +4436,7 @@ void beep(void *frontend, int mode)
char buf[sizeof(cfg.bell_wavefile) + 80];
char otherbuf[100];
sprintf(buf, "Unable to play sound file\n%s\n"
"Using default sound instead", cfg.bell_wavefile);
"Using default sound instead", cfg.bell_wavefile.path);
sprintf(otherbuf, "%.70s Sound Error", appname);
MessageBox(hwnd, buf, otherbuf,
MB_OK | MB_ICONEXCLAMATION);