chore: add GetAppDir for wasm returning root VFS

This commit is contained in:
cortexmancer 2026-01-14 19:25:21 -03:00
parent 4b74312860
commit e0288f33ba
No known key found for this signature in database
GPG Key ID: E6AE865D00B73C61

View File

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