We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e9a378 commit 297bc2eCopy full SHA for 297bc2e
source/fs.c
@@ -86,7 +86,7 @@ bool CheckWritePermissions(const char* path) {
86
if (pdrv == 0) {
87
perm = PERM_SDCARD;
88
snprintf(area_name, 16, "the SD card");
89
- } else if (GetMountState() == IMG_RAMDRV) {
+ } else if ((pdrv == 7) && (GetMountState() == IMG_RAMDRV)) {
90
perm = PERM_RAMDRIVE;
91
snprintf(area_name, 16, "the RAM drive");
92
} else if (((pdrv >= 1) && (pdrv <= 3)) || (GetVirtualSource(path) == VRT_SYSNAND)) {
source/godmode.c
@@ -7,7 +7,7 @@
7
#include "virtual.h"
8
#include "image.h"
9
10
-#define VERSION "0.5.0"
+#define VERSION "0.5.1"
11
12
#define N_PANES 2
13
#define IMG_DRV "789I"
0 commit comments