Skip to content

Commit e6cf07f

Browse files
committed
e
1 parent fd9f0b6 commit e6cf07f

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

source/Main.hx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,12 @@ class Main extends Sprite
205205
public static var changeID:Int = 0;
206206
public function new()
207207
{
208+
209+
backend.window.CppAPI.setWindowOpacity(0);
210+
208211
super();
209212

213+
210214
#if (cpp && windows)
211215
backend.window.Native.fixScaling();
212216
#end
@@ -292,7 +296,6 @@ class Main extends Sprite
292296
// "NativeTrace works with double quotes too!".NativeTrace(true);
293297
// testArray.NativeTrace(true, false);
294298

295-
backend.window.CppAPI.setWindowOpacity(1);
296299

297300

298301

source/archipelago/APPlayState.hx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2417,6 +2417,12 @@ class APPlayState extends PlayState {
24172417
else
24182418
if (resistanceAmount < 1) resistanceAmount += 0.005;
24192419
}
2420+
2421+
@:privateAccess
2422+
if ((note.isCheck || apNotes.contains(cast note)) && !note.ignoreNote) {
2423+
ArchPopup.startPopupCustom('You Found A Check!', '...while not even playing that side.', 'archColor'); // test
2424+
checkedNotes.push(note);
2425+
}
24202426
}
24212427

24222428
public var bfAscend:Bool = false;

0 commit comments

Comments
 (0)