From 66da7099d0a3f06c3043e47e0fbadc267e079975 Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 13 May 2002 17:01:32 +0000 Subject: [PATCH] clarify mayaBinary --- pandatool/src/maya/mayaApi.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandatool/src/maya/mayaApi.cxx b/pandatool/src/maya/mayaApi.cxx index 510d095363..1e207e28ef 100644 --- a/pandatool/src/maya/mayaApi.cxx +++ b/pandatool/src/maya/mayaApi.cxx @@ -183,10 +183,10 @@ write(const Filename &filename) { os_filename = back_to_front_slash(os_filename); #endif - const char *type = MFileIO::mayaBinary; + const char *type = "mayaBinary"; string extension = filename.get_extension(); if (extension == "ma") { - type = MFileIO::mayaAscii; + type = "mayaAscii"; } MStatus stat = MFileIO::saveAs(os_filename.c_str(), type, true);