From 79e90edf5ca747898894ce16fb1c36e53396ec82 Mon Sep 17 00:00:00 2001 From: matcool <26722564+matcool@users.noreply.github.com> Date: Tue, 7 Dec 2021 15:24:09 -0300 Subject: [PATCH] fix dumb issue --- src/overlay_layer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/overlay_layer.cpp b/src/overlay_layer.cpp index 3eab6b7..b539487 100644 --- a/src/overlay_layer.cpp +++ b/src/overlay_layer.cpp @@ -210,7 +210,7 @@ void OverlayLayer::_update_default_fps() { } void OverlayLayer::FLAlert_Clicked(gd::FLAlertLayer* alert, bool btn2) { - if (alert->getTag() == 1) { + if (alert->getTag() == 44) { if (!btn2) { CCApplication::sharedApplication()->openURL("https://www.gyan.dev/ffmpeg/builds/"); } @@ -339,7 +339,7 @@ void OverlayLayer::on_recorder(CCObject*) { "ffmpeg was not found, recorder will not work without it. " "To install ffmpeg download it and place the ffmpeg.exe (found inside the bin folder in the zip) in the gd folder" ); - popup->setTag(1); + popup->setTag(44); popup->show(); } else has_ffmpeg = true;