--- hatari/src/gui-sdl/dlgDevice.c 2019/04/01 07:15:41 1.1.1.6 +++ hatari/src/gui-sdl/dlgDevice.c 2019/04/09 08:48:53 1.1.1.8 @@ -6,7 +6,7 @@ Device (Printer etc.) setup dialog */ -const char DlgDevice_rcsid[] = "Hatari $Id: dlgDevice.c,v 1.1.1.6 2019/04/01 07:15:41 root Exp $"; +const char DlgDevice_fileid[] = "Hatari dlgDevice.c : " __DATE__ " " __TIME__; #include "main.h" #include "configuration.h" @@ -75,9 +75,9 @@ static SGOBJ devicedlg[] = /*-----------------------------------------------------------------------*/ -/* - Show and process the "Device" dialog. -*/ +/** + * Show and process the "Device" dialog. + */ void Dialog_DeviceDlg(void) { int but; @@ -117,31 +117,31 @@ void Dialog_DeviceDlg(void) SDLGui_FileConfSelect(dlgPrinterName, ConfigureParams.Printer.szPrintToFileName, devicedlg[DEVDLG_PRNFILENAME].w, - TRUE); + true); break; case DEVDLG_RS232OUTBROWSE: /* Choose a new RS232 output file */ SDLGui_FileConfSelect(dlgRs232OutName, ConfigureParams.RS232.szOutFileName, devicedlg[DEVDLG_RS232OUTNAME].w, - TRUE); + true); break; case DEVDLG_RS232INBROWSE: /* Choose a new RS232 input file */ SDLGui_FileConfSelect(dlgRs232InName, ConfigureParams.RS232.szInFileName, devicedlg[DEVDLG_RS232INNAME].w, - TRUE); + true); break; case DEVDLG_MIDIINBROWSE: /* Choose a new MIDI file */ SDLGui_FileConfSelect(dlgMidiInName, ConfigureParams.Midi.sMidiInFileName, devicedlg[DEVDLG_MIDIINNAME].w, - TRUE); + true); break; case DEVDLG_MIDIOUTBROWSE: /* Choose a new MIDI file */ SDLGui_FileConfSelect(dlgMidiOutName, ConfigureParams.Midi.sMidiOutFileName, devicedlg[DEVDLG_MIDIOUTNAME].w, - TRUE); + true); break; } }