Go to file
Birunthan Mohanathas 23f4a31bf0 Script: Fixed that the value of the Script measure is not reset when an error occurs.
In the following case, for example, the value of the measure used to remain 10 even after an error. Now it will default to 0 on error.

function Initialize()
	i = 0
end

function Update()
	if i < 5 then
		i = i + 1
		return 10
	else
		i() -- error here, execution stops
		return 2
	end
end
2011-07-25 17:59:43 +00:00
Application - Enabling some C++ optimization switches (/OPT:ICF, /OPT:REF, /GL) 2011-07-08 20:45:01 +00:00
Library Script: Fixed that the value of the Script measure is not reset when an error occurs. 2011-07-25 17:59:43 +00:00
Plugins NowPlayingPlugin: 2011-07-24 16:40:20 +00:00
LICENSE Initial directory structure. 2009-02-10 18:09:59 +00:00
Rainmeter.props Added a Rainmeter.props file to easily change to 64bit compiler across all projects (for VS2010 Pro, which has 64bit compiler by default). 2011-05-14 07:56:18 +00:00
Rainmeter.sln Got rid of annoying dialog on Express edition. 2011-05-21 19:49:13 +00:00
README.md Initial directory structure. 2009-02-10 18:09:59 +00:00
Version.h Upgrading development environment to Visual C++ 2010. 2011-02-10 16:09:05 +00:00