diff options
author | Max Kellermann <max@duempel.org> | 2008-10-11 12:52:51 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-11 12:52:51 +0200 |
commit | 42409a35e2468f13a03d23417f73730f1f8e41d5 (patch) | |
tree | 50e4ac1cd81ad5b76f64a60996f748b19e8e74cb /src/player_control.h | |
parent | dd7711d86c502c8d302b791d19a836360e758e12 (diff) | |
download | mpd-42409a35e2468f13a03d23417f73730f1f8e41d5.tar.gz mpd-42409a35e2468f13a03d23417f73730f1f8e41d5.tar.xz mpd-42409a35e2468f13a03d23417f73730f1f8e41d5.zip |
player: removed player_control.fileTime
This variable is superfluous, it is only used to copy its value to
player_control.totalTime. Since the original source of this value
(song->tag->time) will still be available at this point, we can safely
remove fileTime.
Diffstat (limited to 'src/player_control.h')
-rw-r--r-- | src/player_control.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/player_control.h b/src/player_control.h index 5b3c4a5d2..179a9c2ab 100644 --- a/src/player_control.h +++ b/src/player_control.h @@ -90,7 +90,6 @@ struct player_control { struct audio_format audio_format; volatile float totalTime; volatile float elapsedTime; - volatile float fileTime; struct song *volatile next_song; struct song *errored_song; volatile enum player_queue_state queueState; |