[PR #107] [MERGED] More module work focused on undertale #1297

Closed
opened 2026-02-27 21:11:59 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/107
Author: @georgemoralis
Created: 4/1/2024
Status: Merged
Merged: 4/5/2024
Merged by: @georgemoralis

Base: mainHead: modules4


📝 Commits (10+)

  • 92e4c6b scePthreadMutexDestroy implemented
  • 6066c89 scePadGetControllerInformation added , dummy scePadSetMotionSensorState
  • 9d8fc61 sceSaveDataMount2 just return save data not found for now
  • 0b8cc8e added sceKernelClockGettime
  • 2cc03e8 added some debug info to gnm
  • c832e38 scePthreadAttrGet , and some mutex work
  • 121759d somehow working scePthreadCreate
  • a049d4c added clock_gettime
  • 9358422 dummy sceAudioIn lib
  • c29f514 just disable audioInOpen

📊 Changes

23 files changed (+1068 additions, -36 deletions)

View changed files

📝 CMakeLists.txt (+4 -2)
📝 src/Emulator/Host/controller.cpp (+32 -1)
📝 src/Emulator/Host/controller.h (+6 -0)
📝 src/audio_core/sdl_audio.cpp (+38 -0)
📝 src/audio_core/sdl_audio.h (+1 -0)
📝 src/common/logging/filter.cpp (+1 -0)
📝 src/common/logging/types.h (+1 -0)
📝 src/common/types.h (+1 -1)
📝 src/core/hle/kernel/memory_management.cpp (+1 -1)
📝 src/core/hle/libraries/libkernel/thread_management.cpp (+409 -12)
📝 src/core/hle/libraries/libkernel/thread_management.h (+38 -1)
📝 src/core/hle/libraries/libpad/pad.cpp (+71 -2)
📝 src/core/hle/libraries/libpad/pad.h (+23 -0)
📝 src/core/hle/libraries/libs.cpp (+2 -0)
📝 src/core/hle/libraries/libscegnmdriver/libscegnmdriver.cpp (+44 -3)
📝 src/core/hle/libraries/libscegnmdriver/libscegnmdriver.h (+2 -2)
src/core/libraries/libsceaudioin.cpp (+280 -0)
src/core/libraries/libsceaudioin.h (+54 -0)
📝 src/core/libraries/libsceaudioout.cpp (+9 -4)
📝 src/core/libraries/libsceaudioout.h (+7 -2)

...and 3 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/shadps4-emu/shadPS4/pull/107 **Author:** [@georgemoralis](https://github.com/georgemoralis) **Created:** 4/1/2024 **Status:** ✅ Merged **Merged:** 4/5/2024 **Merged by:** [@georgemoralis](https://github.com/georgemoralis) **Base:** `main` ← **Head:** `modules4` --- ### 📝 Commits (10+) - [`92e4c6b`](https://github.com/shadps4-emu/shadPS4/commit/92e4c6b7982b7a1096b46d3ebb8fc46390805a6a) scePthreadMutexDestroy implemented - [`6066c89`](https://github.com/shadps4-emu/shadPS4/commit/6066c89607761999cb0e068d2d0a89178df5e8f8) scePadGetControllerInformation added , dummy scePadSetMotionSensorState - [`9d8fc61`](https://github.com/shadps4-emu/shadPS4/commit/9d8fc6195460d45e8a24dae87afc8d2495322633) sceSaveDataMount2 just return save data not found for now - [`0b8cc8e`](https://github.com/shadps4-emu/shadPS4/commit/0b8cc8eba90ef16ab9a89f8ffa9b48293c9ae88b) added sceKernelClockGettime - [`2cc03e8`](https://github.com/shadps4-emu/shadPS4/commit/2cc03e851e074b870a499857868ace8f027a104e) added some debug info to gnm - [`c832e38`](https://github.com/shadps4-emu/shadPS4/commit/c832e3831a7617daebe555e79b64258cafd5210c) scePthreadAttrGet , and some mutex work - [`121759d`](https://github.com/shadps4-emu/shadPS4/commit/121759d836a71b983479593764b3394f5d8448f5) somehow working scePthreadCreate - [`a049d4c`](https://github.com/shadps4-emu/shadPS4/commit/a049d4c491e11b49aaf56938b956c0af27375fbe) added clock_gettime - [`9358422`](https://github.com/shadps4-emu/shadPS4/commit/935842291ddb2f20ef775f6c9e2a2ee4d54412cb) dummy sceAudioIn lib - [`c29f514`](https://github.com/shadps4-emu/shadPS4/commit/c29f514e637a5cb7de729b836cb9aaaaf285d819) just disable audioInOpen ### 📊 Changes **23 files changed** (+1068 additions, -36 deletions) <details> <summary>View changed files</summary> 📝 `CMakeLists.txt` (+4 -2) 📝 `src/Emulator/Host/controller.cpp` (+32 -1) 📝 `src/Emulator/Host/controller.h` (+6 -0) 📝 `src/audio_core/sdl_audio.cpp` (+38 -0) 📝 `src/audio_core/sdl_audio.h` (+1 -0) 📝 `src/common/logging/filter.cpp` (+1 -0) 📝 `src/common/logging/types.h` (+1 -0) 📝 `src/common/types.h` (+1 -1) 📝 `src/core/hle/kernel/memory_management.cpp` (+1 -1) 📝 `src/core/hle/libraries/libkernel/thread_management.cpp` (+409 -12) 📝 `src/core/hle/libraries/libkernel/thread_management.h` (+38 -1) 📝 `src/core/hle/libraries/libpad/pad.cpp` (+71 -2) 📝 `src/core/hle/libraries/libpad/pad.h` (+23 -0) 📝 `src/core/hle/libraries/libs.cpp` (+2 -0) 📝 `src/core/hle/libraries/libscegnmdriver/libscegnmdriver.cpp` (+44 -3) 📝 `src/core/hle/libraries/libscegnmdriver/libscegnmdriver.h` (+2 -2) ➕ `src/core/libraries/libsceaudioin.cpp` (+280 -0) ➕ `src/core/libraries/libsceaudioin.h` (+54 -0) 📝 `src/core/libraries/libsceaudioout.cpp` (+9 -4) 📝 `src/core/libraries/libsceaudioout.h` (+7 -2) _...and 3 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 21:11:59 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/shadPS4#1297
No description provided.