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

This commit is contained in:
base
2026-01-15 06:08:03 -03:00
committed by GitHub
parent 026b7e808a
commit a938a7c97a

View File

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