From 275af6062c410b0f735c1617453174d042139d85 Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 26 Apr 2024 10:36:26 +0200 Subject: [PATCH 1/2] Bump softprops/action-gh-release from 1 to 2 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f9aad9..a88cfea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: - name: zip artifact run: zip -r ${{ env.REPOSITORY_NAME }}_${{ env.DATETIME }}.zip wiiu - name: Create Release - uses: "softprops/action-gh-release@v1" + uses: "softprops/action-gh-release@v2" with: tag_name: ${{ env.REPOSITORY_NAME }}-${{ env.DATETIME }} draft: false From 1c551b0ce73bedc2b59e70eb1e37515393bc7ac9 Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 26 Apr 2024 10:37:24 +0200 Subject: [PATCH 2/2] Remove debug logs --- source/utils/MemoryUtils.h | 1 - 1 file changed, 1 deletion(-) diff --git a/source/utils/MemoryUtils.h b/source/utils/MemoryUtils.h index 234d932..8d68393 100644 --- a/source/utils/MemoryUtils.h +++ b/source/utils/MemoryUtils.h @@ -14,7 +14,6 @@ class MemoryWrapper { } ~MemoryWrapper() { if (mPtr && mFreeFn) { - DEBUG_FUNCTION_LINE_ERR("Free memory wrapper for %08X %d", mPtr, mSize); memset(mPtr, 0, mSize); mFreeFn(mPtr); }