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

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

	return 2

end

print ("gugus> + dev")