Skip to content

Commit 55ecc62

Browse files
committed
asdf
1 parent a5754fb commit 55ecc62

8 files changed

+8
-8
lines changed

src/Layers/ColouredAlertLayer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class ColouredAlertLayer : public FLAlertLayer
5151
{
5252
auto size = panel->getContentSize();
5353

54-
auto gradient = CCLayerGradient::create();
54+
auto gradient = CCLayerGradient::create(ccc4(255, 255, 255, 255), ccc4(255, 255, 255, 255));
5555
gradient->setContentSize(size);
5656
gradient->setZOrder(-1);
5757
gradient->setID("gradient"_spr);

src/Layers/EditStatusPositionLayer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class EditStatusPositionLayer : public FLAlertLayer
111111
{
112112
auto size = panel->getContentSize();
113113

114-
auto gradient = CCLayerGradient::create();
114+
auto gradient = CCLayerGradient::create(ccc4(255, 255, 255, 255), ccc4(255, 255, 255, 255));
115115
gradient->setContentSize(size);
116116
gradient->setZOrder(-1);
117117
gradient->setID("gradient"_spr);

src/Layers/LoadMacroPopup.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class LoadMacroPopup : public FLAlertLayer, TextInputDelegate
9292
{
9393
auto size = panel->getContentSize();
9494

95-
auto gradient = CCLayerGradient::create();
95+
auto gradient = CCLayerGradient::create(ccc4(255, 255, 255, 255), ccc4(255, 255, 255, 255));
9696
gradient->setContentSize(size);
9797
gradient->setZOrder(-1);
9898
gradient->setID("gradient"_spr);

src/Layers/ReplayOptionsLayer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class ReplayOptionsLayer : public FLAlertLayer
8282
{
8383
auto size = panel->getContentSize();
8484

85-
auto gradient = CCLayerGradient::create();
85+
auto gradient = CCLayerGradient::create(ccc4(255, 255, 255, 255), ccc4(255, 255, 255, 255));
8686
gradient->setContentSize(size);
8787
gradient->setZOrder(-1);
8888
gradient->setID("gradient"_spr);

src/Layers/SaveMacroPopup.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ class SaveMacroPopup : public FLAlertLayer, TextInputDelegate
159159
{
160160
auto size = panel->getContentSize();
161161

162-
auto gradient = CCLayerGradient::create();
162+
auto gradient = CCLayerGradient::create(ccc4(255, 255, 255, 255), ccc4(255, 255, 255, 255));
163163
gradient->setContentSize(size);
164164
gradient->setZOrder(-1);
165165
gradient->setID("gradient"_spr);

src/Layers/SetupFPSBypass.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class SetupFPSBypass : public FLAlertLayer
6666
{
6767
auto size = panel->getContentSize();
6868

69-
auto gradient = CCLayerGradient::create();
69+
auto gradient = CCLayerGradient::create(ccc4(255, 255, 255, 255), ccc4(255, 255, 255, 255));
7070
gradient->setContentSize(size);
7171
gradient->setZOrder(-1);
7272
gradient->setID("gradient"_spr);

src/Layers/SetupFadeSetting.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class SetupFadeSetting : public FLAlertLayer
9898
{
9999
auto size = panel->getContentSize();
100100

101-
auto gradient = CCLayerGradient::create();
101+
auto gradient = CCLayerGradient::create(ccc4(255, 255, 255, 255), ccc4(255, 255, 255, 255));
102102
gradient->setContentSize(size);
103103
gradient->setZOrder(-1);
104104
gradient->setID("gradient"_spr);

src/Layers/SetupTransitionCustomizer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class SetupTransCustom : public FLAlertLayer
8686
{
8787
auto size = panel->getContentSize();
8888

89-
auto gradient = CCLayerGradient::create();
89+
auto gradient = CCLayerGradient::create(ccc4(255, 255, 255, 255), ccc4(255, 255, 255, 255));
9090
gradient->setContentSize(size);
9191
gradient->setZOrder(-1);
9292
gradient->setID("gradient"_spr);

0 commit comments

Comments
 (0)