Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: cmake --build . --config $BUILD_TYPE

- name: Upload Build Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: CompressonatorCLI_64_Windows_Master_Build
path: ${{github.workspace}}/build/bin/bin/Release
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:

# Will probably want to collect the files into a better structure before running this command
- name: Upload Build Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: CompressonatorFramework_Windows_Master_Build
path: CompressonatorFramework_result/
2 changes: 1 addition & 1 deletion cmp_compressonatorlib/compressonator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ CMP_ERROR CMP_API CMP_ConvertTexture(CMP_Texture* pSourceTexture,
CodecType destType = GetCodecType(pDestTexture->format);
assert(destType != CT_Unknown);
if (destType == CT_Unknown)
return CMP_ERR_UNSUPPORTED_SOURCE_FORMAT;
return CMP_ERR_UNSUPPORTED_DEST_FORMAT;

// Figure out the type of processing we are doing

Expand Down