Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
HJfod committed Jan 21, 2025
1 parent 5727170 commit 4425216
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions src/features/ViewTab/ViewTab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@
#include <Geode/binding/GameManager.hpp>
#include <Geode/binding/GJGroundLayer.hpp>
#include <Geode/utils/cocos.hpp>
#include <geode.custom-keybinds/include/Keybinds.hpp>
#include <utils/Editor.hpp>
#include <utils/HolyUB.hpp>
#include <utils/Pro.hpp>

using namespace geode::prelude;
#ifdef GEODE_IS_WINDOWS
#include <geode.custom-keybinds/include/Keybinds.hpp>
using namespace keybinds;
#endif

using namespace geode::prelude;

template <class F>
class CCFunction : public CCObject {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/Editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class $modify(EditorPauseLayer) {
auto spr = typeinfo_cast<CCRGBAProtocol*>(btn->getNormalImage());
spr->setCascadeColorEnabled(true);
spr->setCascadeOpacityEnabled(true);
spr->setColor({ 90, 90, 90 });
spr->setColor(ccc3(90, 90, 90));
spr->setOpacity(200);
}
}
Expand Down

0 comments on commit 4425216

Please sign in to comment.