Compare commits

...

2 Commits

Author SHA1 Message Date
Maschell 95014a2123 Remove debug logs 2024-04-26 10:39:56 +02:00
Maschell bdf9e079c8 Bump softprops/action-gh-release from 1 to 2 2024-04-26 10:39:56 +02:00
2 changed files with 1 additions and 2 deletions

View File

@ -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

View File

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