mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-22 02:45:49 -04:00
Not const
This commit is contained in:
parent
1be7a997a1
commit
e6b15ed50a
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ struct CustomLoadingLayer : Modify<CustomLoadingLayer, LoadingLayer> {
|
|||
};
|
||||
|
||||
struct FallbackCustomLoadingLayer : Modify<FallbackCustomLoadingLayer, CCLayer> {
|
||||
static void onModify(const auto& self) {
|
||||
static void onModify(auto& self) {
|
||||
GEODE_FORWARD_COMPAT_ENABLE_HOOKS_INNER("")
|
||||
else if (!self.setHookPriority("CCLayer::init", geode::node_ids::GEODE_ID_PRIORITY)) {
|
||||
log::warn("Failed to set CCLayer::init hook priority, node IDs may not work properly");
|
||||
|
|
Loading…
Reference in a new issue