core: Implement sceRandomGetRandomNumber (#350)

This commit is contained in:
Dzmitry Dubrova 2024-07-31 14:01:22 +03:00 committed by GitHub
parent a7f2f09a44
commit 0fe766db6c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 55 additions and 0 deletions

View file

@ -222,6 +222,10 @@ set(PLAYGO_LIB src/core/libraries/playgo/playgo.cpp
src/core/libraries/playgo/playgo_types.h
)
set(RANDOM_LIB src/core/libraries/random/random.cpp
src/core/libraries/random/random.h
)
set(USBD_LIB src/core/libraries/usbd/usbd.cpp
src/core/libraries/usbd/usbd.h
)
@ -334,6 +338,7 @@ set(CORE src/core/aerolib/stubs.cpp
${NP_LIBS}
${PNG_LIB}
${PLAYGO_LIB}
${RANDOM_LIB}
${USBD_LIB}
${MISC_LIBS}
${DIALOGS_LIB}