mirror of
https://github.com/libretro/mgba.git
synced 2024-11-27 10:11:00 +00:00
PSP2: Use custom localtime_r since newlib version is broken (fixes #560)
This commit is contained in:
parent
8f049e0183
commit
c184bc6337
1
CHANGES
1
CHANGES
@ -166,6 +166,7 @@ Bugfixes:
|
||||
- Qt: Fix controls not saving on non-SDL builds
|
||||
- GB Video: Fix LYC regression
|
||||
- Qt: Fix translation initialization (fixes mgba.io/i/776)
|
||||
- PSP2: Use custom localtime_r since newlib version is broken (fixes mgba.io/i/560)
|
||||
Misc:
|
||||
- Qt: Add language selector
|
||||
- GBA Timer: Improve accuracy of timers
|
||||
|
@ -275,7 +275,9 @@ endif()
|
||||
include(CheckFunctionExists)
|
||||
check_function_exists(strdup HAVE_STRDUP)
|
||||
check_function_exists(strndup HAVE_STRNDUP)
|
||||
check_function_exists(localtime_r HAVE_LOCALTIME_R)
|
||||
if(NOT DEFINED PSP2)
|
||||
check_function_exists(localtime_r HAVE_LOCALTIME_R)
|
||||
endif()
|
||||
if(NOT CMAKE_SYSTEM_NAME STREQUAL "Generic")
|
||||
check_function_exists(snprintf_l HAVE_SNPRINTF_L)
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||
|
Loading…
Reference in New Issue
Block a user