fix NcmpcppKeys::NullKey

-1 is ERR, which causes some trouble, e.g.
if someone presses Delete while being in playlist.
This commit is contained in:
Andrzej Rybczak
2010-04-24 01:53:59 +02:00
parent 336fa3cd7b
commit db81faf9b0

View File

@@ -52,7 +52,7 @@ struct Column
struct NcmpcppKeys struct NcmpcppKeys
{ {
static const int NullKey = -1; static const int NullKey = 0;
void SetDefaults(); void SetDefaults();
void Read(); void Read();