Skip to content

Commit

Permalink
Improve additional data paths with a forward slash
Browse files Browse the repository at this point in the history
  • Loading branch information
kr15h committed Oct 15, 2017
1 parent e932403 commit 2d1c0a3
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/MediaServer/MediaServer.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@
#define DEFAULT_IMAGES_DIR "sources/images/"
#define DEFAULT_VIDEOS_DIR "sources/videos/"

#define PI_IMAGES_DIR "/boot/ofxpimapper/sources/images"
#define PI_VIDEOS_DIR "/boot/ofxpimapper/sources/videos"
#define PI_IMAGES_DIR "/boot/ofxpimapper/sources/images/"
#define PI_VIDEOS_DIR "/boot/ofxpimapper/sources/videos/"

/*
* These you can get when you apt-get install usbmount
*/
#define USB0_IMAGES_DIR "/media/usb0"
#define USB1_IMAGES_DIR "/media/usb1"
#define USB2_IMAGES_DIR "/media/usb2"
#define USB3_IMAGES_DIR "/media/usb3"

#define USB0_VIDEOS_DIR "/media/usb0"
#define USB1_VIDEOS_DIR "/media/usb1"
#define USB2_VIDEOS_DIR "/media/usb2"
#define USB3_VIDEOS_DIR "/media/usb3"
#define USB0_IMAGES_DIR "/media/usb0/"
#define USB1_IMAGES_DIR "/media/usb1/"
#define USB2_IMAGES_DIR "/media/usb2/"
#define USB3_IMAGES_DIR "/media/usb3/"

#define USB0_VIDEOS_DIR "/media/usb0/"
#define USB1_VIDEOS_DIR "/media/usb1/"
#define USB2_VIDEOS_DIR "/media/usb2/"
#define USB3_VIDEOS_DIR "/media/usb3/"

// TODO: Change this into a externally configurable list

Expand Down

0 comments on commit 2d1c0a3

Please sign in to comment.