Skip to content

Commit 0ec5320

Browse files
committed
Removed align argument.
1 parent 7a9f80e commit 0ec5320

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
var BitmapText = require('./DynamicBitmapText');
22

3-
var DynamicBitmapTextFactory = function (scene, x, y, font, text, size, align)
3+
var DynamicBitmapTextFactory = function (scene, x, y, font, text, size)
44
{
5-
return new BitmapText(scene, x, y, font, text, size, align);
5+
return new BitmapText(scene, x, y, font, text, size);
66
};
77

88
module.exports = DynamicBitmapTextFactory;

0 commit comments

Comments
 (0)