mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-03 07:20:46 +00:00
Minor changes in some comments
This commit is contained in:
parent
99bd10dfbd
commit
71d2a2e2e7
@ -247,7 +247,8 @@ FileOp* FileOp::createSaveDocumentOperation(const Context* context,
|
|||||||
std::string warnings;
|
std::string warnings;
|
||||||
bool fatal = false;
|
bool fatal = false;
|
||||||
|
|
||||||
/* check image type support */
|
// Check image type support
|
||||||
|
// TODO add support to automatically convert the image to a supported format
|
||||||
switch (fop->m_document->sprite()->pixelFormat()) {
|
switch (fop->m_document->sprite()->pixelFormat()) {
|
||||||
|
|
||||||
case IMAGE_RGB:
|
case IMAGE_RGB:
|
||||||
|
@ -420,10 +420,10 @@ bool PixlyFormat::onSave(FileOp* fop)
|
|||||||
rows_pointer[y] = (png_bytep)png_malloc(png_ptr, size);
|
rows_pointer[y] = (png_bytep)png_malloc(png_ptr, size);
|
||||||
memset(rows_pointer[y], 0, size);
|
memset(rows_pointer[y], 0, size);
|
||||||
fop->setProgress(0.1 * (double)(y+1) / (double)height);
|
fop->setProgress(0.1 * (double)(y+1) / (double)height);
|
||||||
}
|
}
|
||||||
|
|
||||||
// XXX beware the required typo on Pixly xml: "totalCollumns" (sic)
|
// TODO XXX beware the required typo on Pixly xml: "totalCollumns" (sic)
|
||||||
fprintf(xml_fp,
|
fprintf(xml_fp,
|
||||||
"<PixlyAnimation version=\"1.5\">\n"
|
"<PixlyAnimation version=\"1.5\">\n"
|
||||||
"\t<Info "
|
"\t<Info "
|
||||||
"sheetWidth=\"%d\" sheetHeight=\"%d\" "
|
"sheetWidth=\"%d\" sheetHeight=\"%d\" "
|
||||||
@ -453,8 +453,8 @@ bool PixlyFormat::onSave(FileOp* fop)
|
|||||||
|
|
||||||
int duration = sprite->frameDuration(frame);
|
int duration = sprite->frameDuration(frame);
|
||||||
|
|
||||||
// XXX beware the required typo on Pixly xml: "collumn" (sic)
|
// TODO XXX beware the required typo on Pixly xml: "collumn" (sic)
|
||||||
fprintf(xml_fp,
|
fprintf(xml_fp,
|
||||||
"\t\t<Frame duration=\"%d\" visible=\"%s\">\n"
|
"\t\t<Frame duration=\"%d\" visible=\"%s\">\n"
|
||||||
"\t\t\t<Region x=\"%d\" y=\"%d\" width=\"%d\" height=\"%d\"/>\n"
|
"\t\t\t<Region x=\"%d\" y=\"%d\" width=\"%d\" height=\"%d\"/>\n"
|
||||||
"\t\t\t<Index linear=\"%d\" collumn=\"%d\" row=\"%d\"/>\n"
|
"\t\t\t<Index linear=\"%d\" collumn=\"%d\" row=\"%d\"/>\n"
|
||||||
@ -497,7 +497,7 @@ bool PixlyFormat::onSave(FileOp* fop)
|
|||||||
} // layer
|
} // layer
|
||||||
} // frame
|
} // frame
|
||||||
|
|
||||||
fprintf(xml_fp,
|
fprintf(xml_fp,
|
||||||
"\t</Frames>\n"
|
"\t</Frames>\n"
|
||||||
"</PixlyAnimation>\n"
|
"</PixlyAnimation>\n"
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user