Compare commits

..

No commits in common. "95014a212394be9efe06f68ab2414ff3bcfa24b2" and "7332dcaa1d88cb252089944afa7ea42db5d8ae8a" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,7 @@ jobs:
- name: zip artifact - name: zip artifact
run: zip -r ${{ env.REPOSITORY_NAME }}_${{ env.DATETIME }}.zip wiiu run: zip -r ${{ env.REPOSITORY_NAME }}_${{ env.DATETIME }}.zip wiiu
- name: Create Release - name: Create Release
uses: "softprops/action-gh-release@v2" uses: "softprops/action-gh-release@v1"
with: with:
tag_name: ${{ env.REPOSITORY_NAME }}-${{ env.DATETIME }} tag_name: ${{ env.REPOSITORY_NAME }}-${{ env.DATETIME }}
draft: false draft: false

View File

@ -14,6 +14,7 @@ public:
} }
~MemoryWrapper() { ~MemoryWrapper() {
if (mPtr && mFreeFn) { if (mPtr && mFreeFn) {
DEBUG_FUNCTION_LINE_ERR("Free memory wrapper for %08X %d", mPtr, mSize);
memset(mPtr, 0, mSize); memset(mPtr, 0, mSize);
mFreeFn(mPtr); mFreeFn(mPtr);
} }