Fix Windows path split in tester_v3_c parse_file_arg too

parse_file_arg() duplicated the '/' only base-dir split from
parse_path_for_test(); a Windows-style arg (models\Cube\Cube.gltf)
yielded an empty base dir and external buffers failed to load.
diff --git a/tests/tester_v3_c.c b/tests/tester_v3_c.c
index fbc6edc..d53a372 100644
--- a/tests/tester_v3_c.c
+++ b/tests/tester_v3_c.c
@@ -1660,6 +1660,7 @@
   }
 
   slash = strrchr(path, '/');
+  if (!slash) slash = strrchr(path, '\\');
   base_len = slash ? (size_t)(slash - path) : 0;
 
   tg3_error_stack_init(&errors);