mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-09 12:22:51 +00:00
Minor update
svn-id: r13870
This commit is contained in:
parent
2fd3e0ed80
commit
662ead7dcc
@ -21,16 +21,19 @@
|
||||
*/
|
||||
|
||||
#include "unistd.h"
|
||||
#include "extend.h" // for SCUMMVM_SAVEPATH
|
||||
|
||||
const Char *gUnistdCWD = NULL;
|
||||
|
||||
// currently used only to retreive savepath
|
||||
Char *getcwd(Char *buf, UInt32 size) {
|
||||
Char *copy = buf;
|
||||
|
||||
if (!copy)
|
||||
copy = (Char *)MemPtrNew(StrLen(SCUMMVM_SAVEPATH)); // this may never occured
|
||||
|
||||
StrCopy(copy, SCUMMVM_SAVEPATH);
|
||||
if (gUnistdCWD) {
|
||||
if (!copy)
|
||||
copy = (Char *)MemPtrNew(StrLen(gUnistdCWD)); // this may never occured
|
||||
|
||||
StrCopy(copy, gUnistdCWD);
|
||||
}
|
||||
|
||||
return copy;
|
||||
}
|
@ -20,6 +20,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef __UNISTD_H__
|
||||
#define __UNISTD_H__
|
||||
|
||||
#include <PalmOS.h>
|
||||
|
||||
extern const Char *gUnistdCWD;
|
||||
|
||||
Char *getcwd(Char *buf, UInt32 size);
|
||||
|
||||
#endif
|
Loading…
x
Reference in New Issue
Block a user