Browse Source

Fix PLR file delete bug (#13860)

Robby Candra 6 years ago
parent
commit
79955f0c89
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/sd/cardreader.cpp

+ 1
- 1
Marlin/src/sd/cardreader.cpp View File

@@ -1038,7 +1038,7 @@ void CardReader::printingHasFinished() {
1038 1038
 
1039 1039
 #if ENABLED(POWER_LOSS_RECOVERY)
1040 1040
 
1041
-  constexpr char job_recovery_file_name[4] = "PLR";
1041
+  constexpr char job_recovery_file_name[5] = "/PLR";
1042 1042
 
1043 1043
   bool CardReader::jobRecoverFileExists() {
1044 1044
     const bool exists = recovery.file.open(&root, job_recovery_file_name, O_READ);

Loading…
Cancel
Save