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 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); }