forked from triacontane/RPGMakerMV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBugFixBitmapMaxWidth.js
34 lines (30 loc) · 1.29 KB
/
BugFixBitmapMaxWidth.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//=============================================================================
// BugFixBitmapMaxWidth.js
// ----------------------------------------------------------------------------
// Version
// 1.0.0 2016/03/23 初版
// ----------------------------------------------------------------------------
// [Blog] : http://triacontane.blogspot.jp/
// [Twitter]: https://twitter.com/triacontane/
// [GitHub] : https://github.com/triacontane/
//=============================================================================
/*:
* @plugindesc FilefoxのdrawTextエラー修正プラグイン
* @target MZ @url https://github.com/triacontane/RPGMakerMV/tree/mz_master @author トリアコンタン
*
* @help FilefoxでBitmap.prototype.drawTextの引数「maxWidth」に
* 負の値が設定された場合に発生するUnknownErrorを回避します。
*
* このプラグインにはプラグインコマンドはありません。
*
* 利用規約:
* バグ修正プラグインなので無制限で使用できます。
*/
(function () {
'use strict';
var _Bitmap_drawText = Bitmap.prototype.drawText;
Bitmap.prototype.drawText = function(text, x, y, maxWidth, lineHeight, align) {
if (arguments[3] < 0) arguments[3] = 0;
_Bitmap_drawText.apply(this, arguments);
};
})();