diff --git a/src/client/menu.c b/src/client/menu.c
index 37728bc6dd0a88b2a5ebf426edc4b53c7162dbad..9f7c419c18e060ce98528d2f1002c9ad7df0475f 100644
--- a/src/client/menu.c
+++ b/src/client/menu.c
@@ -372,7 +372,7 @@ int ShowItemAt(int Row, int Col, int Width, int Index, int bHilighted)
 	
 	// If the item isn't available for sale, return -1 (so it's skipped)
 	if( status == ITEM_STATUS_SOLDOUT || (price > giUserBalance && gbDisallowSelectWithoutBalance) )
-		Index = -2;
+		Index = -1;
 	
 	return Index;
 }