Symbian^3 port

This commit is contained in:
Shinovon 2026-04-29 05:15:13 +05:00
parent 77cdaaf97e
commit 3eb71f2cc5
106 changed files with 2098 additions and 745 deletions

View file

@ -14,6 +14,7 @@
#include "d3d/rwxbox.h"
#include "d3d/rwd3d8.h"
#include "d3d/rwd3d9.h"
#include "fcaseopen.h"
#define PLUGIN_ID ID_IMAGE
@ -937,7 +938,7 @@ Image::getFilename(const char *name)
if(g->numSearchPaths == 0){
s = rwStrdup(name, MEMDUR_EVENT);
makePath(s);
f = fopen(s, "rb");
f = fcaseopen(s, "rb");
if(f){
fclose(f);
printf("found %s\n", s);
@ -955,7 +956,7 @@ Image::getFilename(const char *name)
strcpy(s, p);
strcat(s, name);
makePath(s);
f = fopen(s, "r");
f = fcaseopen(s, "r");
if(f){
fclose(f);
printf("found %s\n", name);