diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-02-09 14:42:56 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-02-09 14:42:56 +0100 |
commit | 889e70803fcc653d52e75776470b44cee77409b0 (patch) | |
tree | 65730207c4028dc9b0044bfa1b896709f0fcdd6f /menu.c | |
parent | 5abb02b301b893eca757882c178a385b85dae1f1 (diff) | |
download | vdr-889e70803fcc653d52e75776470b44cee77409b0.tar.gz vdr-889e70803fcc653d52e75776470b44cee77409b0.tar.bz2 |
Changed the estimated data rate for calculating the remaining disk capacity to 25.75 MB/min
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.148 2002/02/03 15:42:38 kls Exp $ + * $Id: menu.c 1.149 2002/02/09 14:42:56 kls Exp $ */ #include "menu.h" @@ -1944,13 +1944,14 @@ cMenuMain::cMenuMain(bool Replaying, eOSState State) // Title with disk usage: -#define MB_PER_MINUTE 30 // this is just an estimate! +#define MB_PER_MINUTE 25.75 // this is just an estimate! char buffer[40]; int FreeMB; int Percent = VideoDiskSpace(&FreeMB); - int Hours = int(double(FreeMB) / MB_PER_MINUTE / 60); - int Minutes = (FreeMB / MB_PER_MINUTE) % 60; + int Minutes = int(double(FreeMB) / MB_PER_MINUTE); + int Hours = Minutes / 60; + Minutes %= 60; snprintf(buffer, sizeof(buffer), "%s - Disk %d%% - %2d:%02d %s", tr("Main"), Percent, Hours, Minutes, tr("free")); SetTitle(buffer); |