added text caption to managed_objects.lua to inform of available keys

git-svn-id: svn://anubis/anaglym/trunk@305 99a6e188-d820-4881-8870-2d33a10e2619
This commit is contained in:
Josh Holtrop 2010-09-16 21:22:01 +00:00
parent 59f8c7a28e
commit 4ed5b5c528

View File

@ -85,4 +85,7 @@ function update_overlay_event(width, height)
ag.drawPoint(1, 0, 1, 0, width-1, height-1)
ag.drawPoint(1, 0, 1, 1, -1, -1)
ag.drawPoint(1, 0, 1, 1, width, height)
msg = "b a s r - m1 m3"
tw, th = ag.getTextSize(msg, 14)
ag.drawText(msg, 1, 1, 1, 14, width / 2 - tw / 2, 10)
end