summaryrefslogtreecommitdiff
path: root/shop2.lua
diff options
context:
space:
mode:
Diffstat (limited to 'shop2.lua')
-rw-r--r--shop2.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/shop2.lua b/shop2.lua
index d4c75ee..9f1c308 100644
--- a/shop2.lua
+++ b/shop2.lua
@@ -41,17 +41,17 @@ local function disp_shopscreen()
local m = peripheral.wrap"left"
m.clear()
m.setTextScale(0.5)
- -- Stock Price Adr. Name
- -- xxxx xxxkst 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,4),
- {7,y}, colors.yellow, pad(price,3), colors.lightGray, "kst",
- {15,y}, colour, adr,
+ {1,y}, colors.white, pad(stock,5),
+ {8,y}, colors.yellow, pad(price,3), colors.lightGray, "kst",
+ {16,y}, colour, adr,
{22,y}, colour, name,
}
end