romero126
Joined: 24 Dec 2005 Posts: 200
|
Posted: Sat Mar 17, 2007 9:47 am Post subject: |
|
|
| Code: | function VSH_SplashScreen(image, time)
local DebugTimer = os.clock()
screen:clear(Color.new(0,0,0))
screen:blit(0, 0, image)
screen.waitVblankStart()
screen.flip()
while true do
local CHECK_TIME = os.clock() - DebugTimer
if (CHECK_TIME >= time) then
break
end
end
end |
|
|