Skip to content

Commit

Permalink
fix dumb issue
Browse files Browse the repository at this point in the history
  • Loading branch information
matcool committed Dec 7, 2021
1 parent c3c73e5 commit 79e90ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/overlay_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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/");
}
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 79e90ed

Please sign in to comment.