diff options
author | rodri <rgl@antares-labs.eu> | 2024-01-30 11:30:06 +0000 |
---|---|---|
committer | rodri <rgl@antares-labs.eu> | 2024-01-30 11:30:06 +0000 |
commit | 1a6a53ff7c3964604e2e41c0961aef4736ffb98a (patch) | |
tree | 83407c5386053c89873cf7f2d1fb56d3657282d3 | |
parent | d9fc92f3d11360bbce2a5c853bfe21d5f76aaf1c (diff) | |
download | tinyrend-front.tar.gz tinyrend-front.tar.bz2 tinyrend-front.zip |
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -883,7 +883,7 @@ threadmain(int argc, char *argv[]) if((model = objparse(mdlpath)) == nil) sysfatal("objparse: %r"); if(texpath != nil){ - if((p = strrchr(texpath, '\\')) == nil) + if((p = strrchr(texpath, '/')) == nil) p = texpath; p = strchr(p, '.'); if(p == nil) |