mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-15 11:22:55 +00:00
Merge branch 'rewrite/master' of github.com:FunkinCrew/Funkin-secret into rewrite/master
This commit is contained in:
commit
f4c45f082f
4
hmm.json
4
hmm.json
|
@ -58,8 +58,8 @@
|
||||||
"name": "funkin.vis",
|
"name": "funkin.vis",
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"dir": null,
|
"dir": null,
|
||||||
"ref": "38261833590773cb1de34ac5d11e0825696fc340",
|
"ref": "22b1ce089dd924f15cdc4632397ef3504d464e90",
|
||||||
"url": "https://github.com/FunkinCrew/funkVis"
|
"url": "https://github.com/MidyGamy/funkVis/"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "grig.audio",
|
"name": "grig.audio",
|
||||||
|
|
|
@ -265,9 +265,10 @@ class CrashHandler
|
||||||
|
|
||||||
static function renderMethod():String
|
static function renderMethod():String
|
||||||
{
|
{
|
||||||
try
|
var outputStr:String = 'UNKNOWN';
|
||||||
|
outputStr = try
|
||||||
{
|
{
|
||||||
return switch (FlxG.renderMethod)
|
switch (FlxG.renderMethod)
|
||||||
{
|
{
|
||||||
case FlxRenderMethod.DRAW_TILES: 'DRAW_TILES';
|
case FlxRenderMethod.DRAW_TILES: 'DRAW_TILES';
|
||||||
case FlxRenderMethod.BLITTING: 'BLITTING';
|
case FlxRenderMethod.BLITTING: 'BLITTING';
|
||||||
|
@ -276,7 +277,9 @@ class CrashHandler
|
||||||
}
|
}
|
||||||
catch (e)
|
catch (e)
|
||||||
{
|
{
|
||||||
return 'ERROR ON QUERY RENDER METHOD: ${e}';
|
'ERROR ON QUERY RENDER METHOD: ${e}';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return outputStr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue