[PR #233] [MERGED] Misc Fixes #1414

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

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/233
Author: @georgemoralis
Created: 7/3/2024
Status: Merged
Merged: 7/5/2024
Merged by: @georgemoralis

Base: mainHead: miscFixes2


📝 Commits (10+)

  • 608301f dummy sceAppContentGetAddcontInfoList and fixed structs
  • 0228b58 added scePthreadGetthreadid
  • 3875c00 fixed linux compile?
  • 0ecc540 - Several SaveData functions. Dysmantle and we are doomed should save and load now.
  • c2c55fe mr clang format
  • 1968b2a ...
  • e22ad65 ....
  • bdcadf6 scePthreadSetprio, scePthreadGetprio
  • 8d17f87 improved file not found return in sceKernelOpen
  • fd39c50 improved sceAppContentAppParamGetInt

📊 Changes

17 files changed (+565 additions, -104 deletions)

View changed files

📝 .gitmodules (+3 -0)
📝 CMakeLists.txt (+1 -1)
📝 externals/CMakeLists.txt (+3 -0)
externals/hwinfo (+1 -0)
📝 src/core/file_sys/fs.cpp (+5 -1)
📝 src/core/file_sys/fs.h (+1 -1)
📝 src/core/libraries/app_content/app_content.cpp (+17 -5)
📝 src/core/libraries/app_content/app_content.h (+14 -5)
📝 src/core/libraries/error_codes.h (+3 -0)
📝 src/core/libraries/kernel/file_system.cpp (+7 -2)
📝 src/core/libraries/kernel/thread_management.cpp (+16 -0)
📝 src/core/libraries/kernel/thread_management.h (+1 -0)
📝 src/core/libraries/save_data/error_codes.h (+23 -3)
📝 src/core/libraries/save_data/savedata.cpp (+247 -63)
📝 src/core/libraries/save_data/savedata.h (+202 -23)
📝 src/emulator.cpp (+20 -0)
📝 src/emulator.h (+1 -0)

📄 Description

This pr mainly fixes some issues found on shadps4-emu/shadps4-game-compatibility#25

  • Dummy sceAppContentGetAddcontInfoList
  • Added scePthreadGetthreadid

🔄 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/233 **Author:** [@georgemoralis](https://github.com/georgemoralis) **Created:** 7/3/2024 **Status:** ✅ Merged **Merged:** 7/5/2024 **Merged by:** [@georgemoralis](https://github.com/georgemoralis) **Base:** `main` ← **Head:** `miscFixes2` --- ### 📝 Commits (10+) - [`608301f`](https://github.com/shadps4-emu/shadPS4/commit/608301f86c9bf534af47eed2d883dbf22b1cdfa0) dummy sceAppContentGetAddcontInfoList and fixed structs - [`0228b58`](https://github.com/shadps4-emu/shadPS4/commit/0228b5861c8dde0a7af328eb1805d5cfd3d2b442) added scePthreadGetthreadid - [`3875c00`](https://github.com/shadps4-emu/shadPS4/commit/3875c00281eef628fb9ad090274fef8798130348) fixed linux compile? - [`0ecc540`](https://github.com/shadps4-emu/shadPS4/commit/0ecc54032c0ba395c02b9728bc5e9ec48ef65071) - Several SaveData functions. Dysmantle and we are doomed should save and load now. - [`c2c55fe`](https://github.com/shadps4-emu/shadPS4/commit/c2c55fea87f3e569c3b1776090812267461c889e) mr clang format - [`1968b2a`](https://github.com/shadps4-emu/shadPS4/commit/1968b2aa81a85e473bfed69894860455a80983ac) ... - [`e22ad65`](https://github.com/shadps4-emu/shadPS4/commit/e22ad65e70bcc17190738ca594dcd258707bfaa3) .... - [`bdcadf6`](https://github.com/shadps4-emu/shadPS4/commit/bdcadf63d23c7bc219f54c0ae7a0f6be2443fdbf) scePthreadSetprio, scePthreadGetprio - [`8d17f87`](https://github.com/shadps4-emu/shadPS4/commit/8d17f87a08618afc9cf91d98eef2eb35b0f6eabf) improved file not found return in sceKernelOpen - [`fd39c50`](https://github.com/shadps4-emu/shadPS4/commit/fd39c50910941b03492609196b5fdc5304485539) improved sceAppContentAppParamGetInt ### 📊 Changes **17 files changed** (+565 additions, -104 deletions) <details> <summary>View changed files</summary> 📝 `.gitmodules` (+3 -0) 📝 `CMakeLists.txt` (+1 -1) 📝 `externals/CMakeLists.txt` (+3 -0) ➕ `externals/hwinfo` (+1 -0) 📝 `src/core/file_sys/fs.cpp` (+5 -1) 📝 `src/core/file_sys/fs.h` (+1 -1) 📝 `src/core/libraries/app_content/app_content.cpp` (+17 -5) 📝 `src/core/libraries/app_content/app_content.h` (+14 -5) 📝 `src/core/libraries/error_codes.h` (+3 -0) 📝 `src/core/libraries/kernel/file_system.cpp` (+7 -2) 📝 `src/core/libraries/kernel/thread_management.cpp` (+16 -0) 📝 `src/core/libraries/kernel/thread_management.h` (+1 -0) 📝 `src/core/libraries/save_data/error_codes.h` (+23 -3) 📝 `src/core/libraries/save_data/savedata.cpp` (+247 -63) 📝 `src/core/libraries/save_data/savedata.h` (+202 -23) 📝 `src/emulator.cpp` (+20 -0) 📝 `src/emulator.h` (+1 -0) </details> ### 📄 Description This pr mainly fixes some issues found on shadps4-emu/shadps4-game-compatibility#25 - Dummy sceAppContentGetAddcontInfoList - Added scePthreadGetthreadid --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 21:12:27 +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#1414
No description provided.