summaryrefslogtreecommitdiff
path: root/shop2.lua
diff options
context:
space:
mode:
Diffstat (limited to 'shop2.lua')
-rw-r--r--shop2.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/shop2.lua b/shop2.lua
index 83f01df..d4c75ee 100644
--- a/shop2.lua
+++ b/shop2.lua
@@ -41,25 +41,25 @@ local function disp_shopscreen()
local m = peripheral.wrap"left"
m.clear()
m.setTextScale(0.5)
- -- Stock Price Adr. Name
- -- xxxxx xxxxxkst dmn Diamond
+ -- Stock Price Adr. Name
+ -- xxxx xxxkst dmn Diamond
-- 123456789012345678901234567890123456789012345678901234567
-- 0 1 2 3 4 5
local function fmt_row(m,y, stock,price,adr,name, colour)
colour = colour or colors.cyan
printseq(m) {
- {1,y}, colors.white, pad(stock,5),
- {8,y}, colors.yellow, pad(price,5), colors.lightGray, "kst",
- {18,y}, colour, adr,
- {25,y}, colour, name,
+ {1,y}, colors.white, pad(stock,4),
+ {7,y}, colors.yellow, pad(price,3), colors.lightGray, "kst",
+ {15,y}, colour, adr,
+ {22,y}, colour, name,
}
end
printseq(m) {
{1,1}, colors.orange, "Apiaristics Consortium Store",
- {1,2}, colors.lightGray, "Stock Price Adr. Name",
+ {1,2}, colors.lightGray, "Stock Price Adr. Name",
}
for ix,i in ipairs(ITEMS) do