ソースを参照

chore: add GetAppDir for wasm returning root VFS (#5495)

pull/5498/head
base 1ヶ月前
committed by GitHub
コミット
a938a7c97a
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: B5690EEEBB952194
1個のファイルの変更3行の追加0行の削除
  1. +3
    -0
      src/rcore.c

+ 3
- 0
src/rcore.c ファイルの表示

@ -2738,6 +2738,9 @@ const char *GetApplicationDirectory(void)
appDir[0] = '.';
appDir[1] = '/';
}
#elif defined(__wasm__)
appDir[0] = '/';
#endif
return appDir;

読み込み中…
キャンセル
保存