readme update

This commit is contained in:
2026-04-30 10:35:42 -04:00
parent bab73d1d83
commit 33f04eb9cd
6 changed files with 13 additions and 4 deletions

View File

@ -379,8 +379,8 @@ amsarray<amsstring> splitpath(const amsstring &s)
ret.resize(2);
int ind1,ind2;
ind1 = s.find('/');
ind2 = s.find('\\');
ind1 = s.findright('/');
ind2 = s.findright('\\');
if(ind1>=0)
{
if(ind1==0)