summaryrefslogtreecommitdiffstats
path: root/src/skel
diff options
context:
space:
mode:
authoreray orçunus <erayorcunus@gmail.com>2020-10-11 04:25:15 +0200
committereray orçunus <erayorcunus@gmail.com>2020-10-12 19:22:39 +0200
commitd18a55f429cd1845d5b5e97b37a2b222ac888bb8 (patch)
tree6ffce0e4f8967c3a4ff77a3b8af4a173963f6bf2 /src/skel
parentMerge remote-tracking branch 'origin/master' into miami (diff)
downloadre3-d18a55f429cd1845d5b5e97b37a2b222ac888bb8.tar
re3-d18a55f429cd1845d5b5e97b37a2b222ac888bb8.tar.gz
re3-d18a55f429cd1845d5b5e97b37a2b222ac888bb8.tar.bz2
re3-d18a55f429cd1845d5b5e97b37a2b222ac888bb8.tar.lz
re3-d18a55f429cd1845d5b5e97b37a2b222ac888bb8.tar.xz
re3-d18a55f429cd1845d5b5e97b37a2b222ac888bb8.tar.zst
re3-d18a55f429cd1845d5b5e97b37a2b222ac888bb8.zip
Diffstat (limited to 'src/skel')
-rw-r--r--src/skel/crossplatform.cpp2
-rw-r--r--src/skel/skeleton.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/skel/crossplatform.cpp b/src/skel/crossplatform.cpp
index 452ad9fa..697f9006 100644
--- a/src/skel/crossplatform.cpp
+++ b/src/skel/crossplatform.cpp
@@ -52,7 +52,7 @@ bool FindNextFile(HANDLE d, WIN32_FIND_DATA* finddata) {
while ((file = readdir((DIR*)d)) != NULL) {
// We only want "DT_REG"ular Files, but reportedly some FS and OSes gives DT_UNKNOWN as type.
- if ((file->d_type == DT_UNKNOWN || file->d_type == DT_REG) &&
+ if ((file->d_type == DT_UNKNOWN || file->d_type == DT_REG || file->d_type == DT_LNK) &&
(extensionLen == 0 || strncmp(&file->d_name[strlen(file->d_name) - extensionLen], finddata->extension, extensionLen) == 0)) {
sprintf(relativepath, "%s/%s", finddata->folder, file->d_name);
diff --git a/src/skel/skeleton.cpp b/src/skel/skeleton.cpp
index 99f44fed..e21abb17 100644
--- a/src/skel/skeleton.cpp
+++ b/src/skel/skeleton.cpp
@@ -11,7 +11,7 @@
#include "skeleton.h"
#include "platform.h"
-
+// --MIAMI: file done
static RwBool DefaultVideoMode = TRUE;
@@ -371,8 +371,8 @@ RsRwInitialize(void *displayID)
psNativeTextureSupport();
+ RwTextureSetAutoMipmapping(TRUE);
RwTextureSetMipmapping(FALSE);
- RwTextureSetAutoMipmapping(FALSE);
return TRUE;
}