summaryrefslogtreecommitdiffstats
path: root/gui/win32/gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'gui/win32/gui.c')
-rw-r--r--gui/win32/gui.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/gui/win32/gui.c b/gui/win32/gui.c
index 06aee87b1e..428a24dfcc 100644
--- a/gui/win32/gui.c
+++ b/gui/win32/gui.c
@@ -1005,29 +1005,27 @@ static LRESULT CALLBACK EventProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM
{
if(LOWORD(wParam) - IDPLAYDISK == cdromdrive)
{
-#ifdef USE_DVDREAD
sprintf(searchpath, "%sVIDEO_TS", device + pos);
if(GetFileAttributes(searchpath) != INVALID_FILE_ATTRIBUTES)
{
+#ifdef USE_DVDREAD
if (dvd_device) free(dvd_device);
dvd_device = strdup(device + pos);
dvd_title = dvd_chapter = dvd_angle = 1;
handlemsg(hWnd, evPlayDVD);
- }
#endif
-#ifdef HAVE_LIBCDIO
+ }
sprintf(searchpath, "%sTrack01.cda", device + pos);
if(GetFileAttributes(searchpath) != INVALID_FILE_ATTRIBUTES)
{
+#ifdef HAVE_LIBCDIO
if (cdrom_device) free(cdrom_device);
cdrom_device = strdup(device + pos);
/* mplayer doesn't seem to like the trailing \ after the device name */
cdrom_device[2]=0;
handlemsg(hWnd, evPlayCD);
- }
#endif
- else
- {
+ } else {
HANDLE searchhndl;
WIN32_FIND_DATA finddata;
sprintf(searchpath, "%smpegav\\*.dat", device + pos);