Fix comment typo

This commit is contained in:
rdb 2010-01-01 18:31:18 +00:00
parent a31a23cd31
commit ded22d4fc6

View File

@ -4231,13 +4231,13 @@ do_get_uncompressed_ram_image() {
// Function: Texture::get_ram_image_as // Function: Texture::get_ram_image_as
// Access: Published // Access: Published
// Description: Returns the uncompressed system-RAM image data // Description: Returns the uncompressed system-RAM image data
// associated with the texture, but rather than // associated with the texture. Rather than
// just returning a pointer to the data, like // just returning a pointer to the data, like
// get_uncompressed_ram_image, this function first // get_uncompressed_ram_image, this function first
// processes the data, reorders the components using // processes the data and reorders the components
// the specified format string, and fills these into // using the specified format string, and places these
// a new area. The 'format' arugment should specify // into a new char array. The 'format' argument should
// in which order the components of the texture // specify in which order the components of the texture
// must be. For example, valid format strings are // must be. For example, valid format strings are
// "RGBA", "GA", "ABRG" or "AAA". A component can // "RGBA", "GA", "ABRG" or "AAA". A component can
// also be written as "0" or "1", which means an // also be written as "0" or "1", which means an