Skip to content

Commit

Permalink
ill never be good at anything
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSillyDoggo committed Nov 15, 2024
1 parent f56788e commit 49575c6
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 21 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

- Fixed not being able to input decimal places in the transition speed customizer UI
- Fixed crash when pressing the info button on the label format page
- **Added support for Intel macOS**

# 1.7.5-beta.2

Expand Down
2 changes: 1 addition & 1 deletion mod.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"geode": "4.0.0-alpha.1",
"geode": "4.0.0-beta.1",
"version": "v1.7.5-beta.3",
"gd": {
"win": "2.2074",
Expand Down
40 changes: 20 additions & 20 deletions src/Utils/OffsetManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,26 @@ unsigned int OffsetManager::offsetForType(PatchType type)
GEODE_INTEL_MAC(return 0x7ff4d8);
GEODE_ARM_MAC(return );
GEODE_IOS(return );

#endif

#if GEODE_COMP_GD_VERSION == 22073
#elif GEODE_COMP_GD_VERSION == 22073

GEODE_WINDOWS(return 0x606f98);

#endif

#if GEODE_COMP_GD_VERSION == 22060
#elif GEODE_COMP_GD_VERSION == 22060

GEODE_WINDOWS(return 0x5ec6d0);
GEODE_ANDROID32(return 0x46ce38 - 0x10000);
GEODE_ANDROID64(return 0x9384b8 - 0x100000);
GEODE_INTEL_MAC(return 0x823b00);
GEODE_ARM_MAC(return );
GEODE_IOS(return 0x642b60);

#endif

#else

static_assert(false, "Patches not updated for this game version");

#endif

break;

case PatchType::EditorExtension1:
Expand All @@ -58,22 +58,22 @@ unsigned int OffsetManager::offsetForType(PatchType type)
GEODE_INTEL_MAC(return 0x7fe110);
GEODE_IOS(return );

#endif

#if GEODE_COMP_GD_VERSION == 22073
#elif GEODE_COMP_GD_VERSION == 22073

GEODE_WINDOWS(return 0x607c30);

#endif

#if GEODE_COMP_GD_VERSION == 22060
#elif GEODE_COMP_GD_VERSION == 22060

GEODE_WINDOWS(return 0x5ed33c);
GEODE_ANDROID32(return 0x37e678 - 0x10000);
GEODE_ANDROID64(return 0x76cdb4 - 0x100000);
GEODE_INTEL_MAC(return 0x822770);
GEODE_IOS(return );

#else

static_assert(false, "Patches not updated for this game version");

#endif

break;
Expand All @@ -88,23 +88,23 @@ unsigned int OffsetManager::offsetForType(PatchType type)
GEODE_ANDROID64(return 0x77790c - 0x100000);
GEODE_INTEL_MAC(return 0x7fdf34);
GEODE_IOS(return );

#endif

#if GEODE_COMP_GD_VERSION == 22073
#elif GEODE_COMP_GD_VERSION == 22073

GEODE_WINDOWS(return 0x607c34);

#endif

#if GEODE_COMP_GD_VERSION == 22060
#elif GEODE_COMP_GD_VERSION == 22060

GEODE_WINDOWS(return 0x5ed340);
GEODE_ANDROID32(return 0x37ea1c - 0x10000);
GEODE_ANDROID64(return 0x76d2fc - 0x100000);
GEODE_INTEL_MAC(return 0x82258c);
GEODE_IOS(return );

#else

static_assert(false, "Patches not updated for this game version");

#endif

break;
Expand Down

0 comments on commit 49575c6

Please sign in to comment.