diff options
author | Matt Mower <mowerm@gmail.com> | 2015-11-11 23:22:45 +0100 |
---|---|---|
committer | Dees Troy <dees_troy@teamw.in> | 2015-11-26 05:09:55 +0100 |
commit | 18794c820f109e6de2e16af0f058b562b0492cbc (patch) | |
tree | 7792ad1809e62793ad5b1e86efd6d806d1368c36 /gui/action.cpp | |
parent | Free some memory allocations (diff) | |
download | android_bootable_recovery-18794c820f109e6de2e16af0f058b562b0492cbc.tar android_bootable_recovery-18794c820f109e6de2e16af0f058b562b0492cbc.tar.gz android_bootable_recovery-18794c820f109e6de2e16af0f058b562b0492cbc.tar.bz2 android_bootable_recovery-18794c820f109e6de2e16af0f058b562b0492cbc.tar.lz android_bootable_recovery-18794c820f109e6de2e16af0f058b562b0492cbc.tar.xz android_bootable_recovery-18794c820f109e6de2e16af0f058b562b0492cbc.tar.zst android_bootable_recovery-18794c820f109e6de2e16af0f058b562b0492cbc.zip |
Diffstat (limited to '')
-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 c48c390f9..46f4575d7 100644 --- a/gui/action.cpp +++ b/gui/action.cpp @@ -863,7 +863,7 @@ int GUIAction::getpartitiondetails(std::string arg __unused) DataManager::SetValue("tw_partition_can_resize", 1); else DataManager::SetValue("tw_partition_can_resize", 0); - if (TWFunc::Path_Exists("/sbin/mkdosfs")) + if (TWFunc::Path_Exists("/sbin/mkfs.fat")) DataManager::SetValue("tw_partition_vfat", 1); else DataManager::SetValue("tw_partition_vfat", 0); |