Skip to content

Commit

Permalink
Merge pull request AviSynth#313 from Enyium/patch-2
Browse files Browse the repository at this point in the history
Fix exception message typo
  • Loading branch information
pinterf authored Jan 26, 2023
2 parents 458a6d4 + ea3b7dd commit 4a223e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avs_core/core/interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ int VideoInfo::GetPlaneHeightSubsampling(int plane) const { // Subsampling in b
else
throw AvisynthError("Filter error: GetPlaneHeightSubsampling called with unsupported pixel type.");
}
throw AvisynthError("Filter error: GetPlaneHeightSubsampling called with supported plane.");
throw AvisynthError("Filter error: GetPlaneHeightSubsampling called with unsupported plane.");
}

int VideoInfo::BitsPerPixel() const {
Expand Down

0 comments on commit 4a223e5

Please sign in to comment.