diff options
author | Dees Troy <dees_troy@teamw.in> | 2013-02-02 19:14:36 +0100 |
---|---|---|
committer | Gerrit Code Review <gerrit@5.9.244.119> | 2013-02-02 19:14:36 +0100 |
commit | ad240231f29c02ea5323b98855131efd2f0ec280 (patch) | |
tree | 138a2f55e44aec9e4dec337585fcfc1684d8bc9a /data.cpp | |
parent | Use only std::string in TWFunc::Get_Folder_Size (diff) | |
parent | fix wrong debuging output of used BUILD FLAGS in data.cpp (diff) | |
download | android_bootable_recovery-ad240231f29c02ea5323b98855131efd2f0ec280.tar android_bootable_recovery-ad240231f29c02ea5323b98855131efd2f0ec280.tar.gz android_bootable_recovery-ad240231f29c02ea5323b98855131efd2f0ec280.tar.bz2 android_bootable_recovery-ad240231f29c02ea5323b98855131efd2f0ec280.tar.lz android_bootable_recovery-ad240231f29c02ea5323b98855131efd2f0ec280.tar.xz android_bootable_recovery-ad240231f29c02ea5323b98855131efd2f0ec280.tar.zst android_bootable_recovery-ad240231f29c02ea5323b98855131efd2f0ec280.zip |
Diffstat (limited to 'data.cpp')
-rw-r--r-- | data.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -653,14 +653,14 @@ void DataManager::SetDefaultValues() mConstValues.insert(make_pair(TW_REBOOT_SYSTEM, "1")); #ifdef TW_NO_REBOOT_RECOVERY - printf("RECOVERY_SDCARD_ON_DATA := true\n"); + printf("TW_NO_REBOOT_RECOVERY := true\n"); mConstValues.insert(make_pair(TW_REBOOT_RECOVERY, "0")); #else mConstValues.insert(make_pair(TW_REBOOT_RECOVERY, "1")); #endif mConstValues.insert(make_pair(TW_REBOOT_POWEROFF, "1")); #ifdef TW_NO_REBOOT_BOOTLOADER - printf("RECOVERY_SDCARD_ON_DATA := true\n"); + printf("TW_NO_REBOOT_BOOTLOADER := true\n"); mConstValues.insert(make_pair(TW_REBOOT_BOOTLOADER, "0")); #else mConstValues.insert(make_pair(TW_REBOOT_BOOTLOADER, "1")); |