Skip to content

Commit

Permalink
libretro: fix is_little_endian build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
frranck committed Dec 28, 2020
1 parent 0f863fb commit 29cb38b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Resources/asm.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ bool is_little_endian_real_check()
u.x = 1;
return(u.y[0]);
}

#ifndef __LIBRETRO__
/**
* is_little_endian:
*
Expand All @@ -278,6 +278,7 @@ bool is_little_endian()
return(is_little_endian_real_check());
#endif
}
#endif

void asm2C_init()
{
Expand Down

0 comments on commit 29cb38b

Please sign in to comment.