summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrobojumper <robojumper@gmail.com>2025-04-27 07:59:03 +0200
committerrobojumper <robojumper@gmail.com>2025-04-27 07:59:03 +0200
commit73ebfb9faec8572df4ab9bdd2d7053211c367d24 (patch)
tree88b5bf1cd3bdcff039de2ba4b2111f26d30e8d83 /src
parent6468fc663c304663afa949fd73f4f627bad0e6b3 (diff)
JPAResourceManager OK
Diffstat (limited to 'src')
-rw-r--r--src/JSystem/JParticle/JPAResourceManager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/JSystem/JParticle/JPAResourceManager.cpp b/src/JSystem/JParticle/JPAResourceManager.cpp
index 5b6fe662..aa7ae31b 100644
--- a/src/JSystem/JParticle/JPAResourceManager.cpp
+++ b/src/JSystem/JParticle/JPAResourceManager.cpp
@@ -43,12 +43,12 @@ bool JPAResourceManager::checkUserIndexDuplication(u16 usrIdx) const {
/* 80273EEC-80273F8C 26E82C 00A0+00 0/0 2/2 0/0 .text
* swapTexture__18JPAResourceManagerFPC7ResTIMGPCc */
-const ResTIMG* JPAResourceManager::swapTexture(ResTIMG const* img, char const* swapName) {
- const ResTIMG* ret = NULL;
+const EGG::ResTIMG* JPAResourceManager::swapTexture(EGG::ResTIMG const* img, char const* swapName) {
+ const EGG::ResTIMG* ret = NULL;
for (s32 i = 0; i < mTexNum; i++) {
if (strcmp(swapName, mpTexArr[i]->getName()) == 0) {
- JUTTexture* tex = mpTexArr[i]->getJUTTexture();
+ EGG::Texture* tex = mpTexArr[i]->getJUTTexture();
ret = tex->getTexInfo();
tex->storeTIMG(img, (u8)0);
break;