Commit 96b974bc authored by Max Kellermann's avatar Max Kellermann

player_control: removed the "volatile" attribute

Our use of the "volatile" keyword was wrong from the start, and now that we have proper locking, we can safely remove all of them.
parent 1a402542
......@@ -107,9 +107,9 @@ struct player_control {
struct audio_format audio_format;
float total_time;
float elapsed_time;
struct song *volatile next_song;
struct song *next_song;
const struct song *errored_song;
volatile double seek_where;
double seek_where;
float cross_fade_seconds;
double total_play_time;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment