From 42721c2bc3936dc867695af1f13a179062fd549b Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 7 Oct 2012 16:04:53 +0200 Subject: [PATCH] hdd_menu: allow formatting of removable drives Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/59eee16d743ad5aa7d439780e6d47cea3b935d02 Author: Stefan Seyfried Date: 2012-10-07 (Sun, 07 Oct 2012) --- src/gui/hdd_menu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/hdd_menu.cpp b/src/gui/hdd_menu.cpp index eed8a9218..1e13488c3 100644 --- a/src/gui/hdd_menu.cpp +++ b/src/gui/hdd_menu.cpp @@ -225,7 +225,7 @@ int CHDDMenuHandler::doMenu () fscanf(f, "%d", &removable); fclose(f); - bool enabled = !CNeutrinoApp::getInstance()->recordingstatus && !removable && !isroot; + bool enabled = !CNeutrinoApp::getInstance()->recordingstatus && !isroot; snprintf(str, sizeof(str), "%s %s %lld %s", vendor, model, megabytes < 10000 ? megabytes : megabytes/1000, megabytes < 10000 ? "MB" : "GB"); printf("HDD: %s\n", str);