Skip to content

Commit 5c22377

Browse files
committed
fixed bug in get_conv_function
1 parent b338cb7 commit 5c22377

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

misrc_tools/extract.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ conv_function_t get_conv_function(uint8_t single, uint8_t pad, uint8_t dword, vo
198198
else {
199199
if (pad==1) {
200200
if (outA == NULL) return (conv_function_t) &extract_B_p_32_sse;
201-
else if (outB == NULL) return (conv_function_t) &extract_A_p_sse;
202-
else return (conv_function_t) &extract_AB_p_sse;
201+
else if (outB == NULL) return (conv_function_t) &extract_A_p_32_sse;
202+
else return (conv_function_t) &extract_AB_p_32_sse;
203203
}
204204
else {
205205
if (outA == NULL) return (conv_function_t) &extract_B_32_sse;

0 commit comments

Comments
 (0)