From e256a1a4d044634998102a6e93858b6bf5b51505 Mon Sep 17 00:00:00 2001 From: Allanis Date: Thu, 21 Mar 2013 21:40:20 +0000 Subject: [PATCH] [Change] Switched buy/sell around in outfit panel. --- src/land.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/land.c b/src/land.c index 5d13f52..12efd47 100644 --- a/src/land.c +++ b/src/land.c @@ -188,11 +188,11 @@ static void outfits(void) { BUTTON_WIDTH, BUTTON_HEIGHT, "btnCloseOutfits", "Close", outfits_close); - window_addButton(secondary_wid, -40-BUTTON_WIDTH, 20, + window_addButton(secondary_wid, -40-BUTTON_WIDTH, 40+BUTTON_HEIGHT, BUTTON_WIDTH, BUTTON_HEIGHT, "btnBuyOutfits", "Buy", outfits_buy); - window_addButton(secondary_wid, -40-BUTTON_WIDTH, 40+BUTTON_HEIGHT, + window_addButton(secondary_wid, -40-BUTTON_WIDTH, 20, BUTTON_WIDTH, BUTTON_HEIGHT, "btnSellOutfit", "Sell", outfits_sell);