diff options
author | Max Kellermann <max@duempel.org> | 2008-04-15 05:56:18 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-15 05:56:18 +0000 |
commit | df34beb98d37368c78ea39da6211ac78fd8b4cfa (patch) | |
tree | 62314dda43c191c517d3dc4c2a74dec755e7e9ab | |
parent | b44506084e3da47e4cece0ba1fec84057332a2be (diff) | |
download | mpd-df34beb98d37368c78ea39da6211ac78fd8b4cfa.tar.gz mpd-df34beb98d37368c78ea39da6211ac78fd8b4cfa.tar.xz mpd-df34beb98d37368c78ea39da6211ac78fd8b4cfa.zip |
fix XFADE_DISABLED=-1
git-svn-id: https://svn.musicpd.org/mpd/trunk@7359 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | src/decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decode.c b/src/decode.c index 5016a173d..bea3c94f4 100644 --- a/src/decode.c +++ b/src/decode.c @@ -27,7 +27,7 @@ #include "main_notify.h" enum xfade_state { - XFADE_DISABLED = 1, + XFADE_DISABLED = -1, XFADE_UNKNOWN = 0, XFADE_ENABLED = 1 }; |