mirror of
https://gitlab.com/shinovon/re3-symbian.git
synced 2026-05-22 17:47:20 +03:00
Symbian^3 port
This commit is contained in:
parent
77cdaaf97e
commit
3eb71f2cc5
106 changed files with 2098 additions and 745 deletions
5
vendor/librw/src/image.cpp
vendored
5
vendor/librw/src/image.cpp
vendored
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue