Skip to content

Commit

Permalink
a silly mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
FireMario211 committed Apr 18, 2024
1 parent b5a2bd7 commit a672238
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# because for WHATEVER REASON, loadFromCheckpoint is either tail call optimized or idk

name: Build Geode Mod (Mac OS)
name: Build Geode Mod (No ImGui)

on:
workflow_dispatch:
Expand All @@ -15,11 +13,22 @@ jobs:
fail-fast: false
matrix:
config:
- name: macOS
os: macos-latest
- name: Windows
os: windows-latest

- name: Android32
os: ubuntu-latest
target: Android32

- name: Android64
os: ubuntu-latest
target: Android64


name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
env:
NO_IMGUI: 1

steps:
- uses: actions/checkout@v4
Expand All @@ -29,7 +38,8 @@ jobs:
- name: Build the mod
uses: geode-sdk/build-geode-mod@main
with:
build-config: 'Release'
build-config: 'RelWithDebInfo'
export-pdb: true
combine: true
target: ${{ matrix.config.target }}

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
config:
- name: Windows
os: windows-latest

- name: macOS
os: macos-latest

- name: Android32
os: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ build-android/
build-android-old/
build-androidold.sh
build-linux-deb/
build-noimgui/
build-noimgui.sh
svgs/
compile_commands.json
resources/fontvers/
Expand Down
1 change: 1 addition & 0 deletions src/Hacks/Quartz.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,7 @@ class $modify(QuartzPlayLayer, PlayLayer) {
current_macro.isEnabled = false;
m_fields->started = false;
FLAlertLayer::create("Error", "You are attempting to <cy>playback a macro</c> that <cr>has no inputs!</c>\nConsider <cy>recording the macro</c> to play it back!", "OK")->show();
return;
} else {
m_fields->lastInputFrame = current_macro.inputs[current_macro.inputs.size() - 1].frame;
}
Expand Down

0 comments on commit a672238

Please sign in to comment.