summaryrefslogtreecommitdiff
path: root/scripts/gugus/dev.lua
blob: c19da64280d76d5903cea5b23d18f58416a57a63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

require ("scripts/gugus/sector")

function custom_deviceReport(deviceType)
	-- sim paused?
	local paused = GetContextInfo("paused")
	if paused == false then
		SectorUpdate()
	end

	return 2

end

print ("gugus> + dev")