Skip to content

Commit

Permalink
more little tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamAtomic committed May 1, 2011
1 parent 40ba84e commit f5a3ff6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion org/flixel/FlxCamera.as
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ package org.flixel
* @param OnComplete A function you want to run when the fade finishes.
* @param Force Force the effect to reset.
*/
public function fade(Color:uint=0xffffffff, Duration:Number=1, OnComplete:Function=null, Force:Boolean=false):void
public function fade(Color:uint=0xff000000, Duration:Number=1, OnComplete:Function=null, Force:Boolean=false):void
{
if(!Force && (_fxFadeAlpha > 0.0))
return;
Expand Down
2 changes: 1 addition & 1 deletion org/flixel/FlxG.as
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ package org.flixel
* Assign a minor version to your library.
* Appears after the decimal in the console.
*/
static public var LIBRARY_MINOR_VERSION:uint = 51;
static public var LIBRARY_MINOR_VERSION:uint = 52;

/**
* Debugger overlay layout preset: Wide but low windows at the bottom of the screen.
Expand Down
2 changes: 1 addition & 1 deletion org/flixel/system/input/Input.as
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ package org.flixel.system.input
while(i < _total)
{
var o:Object = _map[i++];
if((o != null) || (o.current > 0))
if((o != null) && (o.current > 0))
return true;
}
return false;
Expand Down

0 comments on commit f5a3ff6

Please sign in to comment.