diff options
author | Eugene Sandulenko | 2015-11-16 07:00:09 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2015-11-16 07:00:09 +0100 |
commit | cfc626d78d23ae80a69d145621942f2cae6371f4 (patch) | |
tree | 429c606cfe00aa81db8ca4248b1a2c2d5657520e /graphics/pixelformat.h | |
parent | 54feebacb19fed877b205cf68be0e38acc9e8eff (diff) | |
download | scummvm-rg350-cfc626d78d23ae80a69d145621942f2cae6371f4.tar.gz scummvm-rg350-cfc626d78d23ae80a69d145621942f2cae6371f4.tar.bz2 scummvm-rg350-cfc626d78d23ae80a69d145621942f2cae6371f4.zip |
GRAPHICS: Implemented utility function to print PixelFormat
Diffstat (limited to 'graphics/pixelformat.h')
-rw-r--r-- | graphics/pixelformat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/graphics/pixelformat.h b/graphics/pixelformat.h index 00db6702fc..3e6c53b05f 100644 --- a/graphics/pixelformat.h +++ b/graphics/pixelformat.h @@ -24,6 +24,7 @@ #define GRAPHICS_PIXELFORMAT_H #include "common/scummsys.h" +#include "common/str.h" namespace Graphics { @@ -260,6 +261,8 @@ struct PixelFormat { // Unsupported return 0; } + + Common::String toString(); }; } // End of namespace Graphics |