diff options
Diffstat (limited to 'gui/action.cpp')
-rw-r--r-- | gui/action.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/action.cpp b/gui/action.cpp index fbd80dc94..97d95f170 100644 --- a/gui/action.cpp +++ b/gui/action.cpp @@ -1798,7 +1798,7 @@ int GUIAction::mountsystemtoggle(std::string arg) } else { TWPartition* Part = PartitionManager.Find_Partition_By_Path("/system"); if (Part) { - if (DataManager::GetIntValue("tw_mount_system_ro")) { + if (arg == "0") { DataManager::SetValue("tw_mount_system_ro", 0); Part->Change_Mount_Read_Only(false); } else { |