Skip to content

Commit a653c8a

Browse files
woops
1 parent 641edf3 commit a653c8a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

buildnumber.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2070
1+
2071

source/funkin/game/Character.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class Character extends FunkinSprite implements IBeatReceiver implements IOffset
109109
if (charXML == null) throw new Exception("Missing \"character\" node in XML.");
110110
xml = new Access(charXML);
111111
} catch(e) {
112-
trace(e);
112+
Logs.trace('Error while loading character ${curCharacter}: ${e}', ERROR);
113113
curCharacter = "bf";
114114
continue;
115115
}

source/funkin/utils/MemoryUtil.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class MemoryUtil {
6161

6262
public static function destroyFlixelZombies() {
6363
#if cpp
64-
Gc.enterGCFreeZone();
64+
// Gc.enterGCFreeZone();
6565

6666
while ((_zombie = Gc.getNextZombie()) != null) {
6767
_nb++;
@@ -72,7 +72,7 @@ class MemoryUtil {
7272
}
7373
Sys.println('Zombies: ${_nb}; IFlxDestroyable Zombies: ${_nbD}');
7474

75-
Gc.exitGCFreeZone();
75+
// Gc.exitGCFreeZone();
7676
#end
7777
}
7878
}

0 commit comments

Comments
 (0)