Index: sources/storage/StorageGlobals.cpp =================================================================== diff -u -r2216ac6ac7f77437a7c29ac8b4043be01bc4609e -ra64c31ec79b3af203691f70397cc31f5727f47f4 --- sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision 2216ac6ac7f77437a7c29ac8b4043be01bc4609e) +++ sources/storage/StorageGlobals.cpp (.../StorageGlobals.cpp) (revision a64c31ec79b3af203691f70397cc31f5727f47f4) @@ -32,18 +32,18 @@ #ifdef BUILD_FOR_TARGET const char *USB_Mount_Point = "/media/usb/"; #else - const char *USB_Mount_Point = "/home/denali/Desktop/USB DISK/"; + const char *USB_Mount_Point = "/media/denali/usb-disk/"; #endif const char *USB_File_System = "vfat"; // SD-CARD - const short Available_Space_Percent = 15; // currently 16GB SD-Card so 2.4GB should always be available. + const short Available_Space_Percent = 15; #ifdef BUILD_FOR_TARGET const char *SDCard_Base_Path_Name = "/media/sd-card/"; #else // should not be in the project application folder. [not tracking by git] - const char *SDCard_Base_Path_Name = "/media/denali/USB DISK/"; + const char *SDCard_Base_Path_Name = "/media/denali/sd-card/"; #endif // Settings @@ -69,5 +69,5 @@ // Treatment // Please notice that is the folder not the path // and it needs to be concatenated after SDCard_Base_Path_Name for each build configuration - const char *Treatment_Log_Folder = "treatments/"; + const char *Treatment_Log_Folder = "treatment/"; }