global variable pollution fix

This commit is contained in:
Andrey Sidorov 2012-06-13 13:12:50 +10:00
parent cfbf71c6b8
commit 313aa8a1cc

View file

@ -164,7 +164,7 @@ module.exports = {
// TODO: maybe it's better just to scan all 32 bits anstead of sorting parameters we are actually have?
for (m in masksList)
{
valueName = valueMaskName['CreateWindow'][masksList[m]];
var valueName = valueMaskName['CreateWindow'][masksList[m]];
args.push( values[valueName] );
}
return [format, args];