Skip to content

Commit

Permalink
Merge pull request #42 from janisozaur/patch-1
Browse files Browse the repository at this point in the history
Only use x86-assembly when explicitly on x86
  • Loading branch information
fabiangreffrath committed Nov 14, 2019
2 parents 7bee9cc + e8061cf commit d2d85d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libfaad/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ char *strchr(), *strrchr();
}


#if defined(_WIN32) && !defined(_WIN64) && !defined(__MINGW32__)
#if defined(_WIN32) && defined(_M_IX86) && !defined(__MINGW32__)
#ifndef HAVE_LRINTF
#define HAS_LRINTF
static INLINE int lrintf(float f)
Expand Down

0 comments on commit d2d85d3

Please sign in to comment.