mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-22 04:01:23 +00:00
BACKENDs: Fix const correctness in "null" graphics manager
svn-id: r55807
This commit is contained in:
parent
ab039812e7
commit
da01896ee0
@ -45,7 +45,7 @@ public:
|
||||
inline Graphics::PixelFormat getScreenFormat() const {
|
||||
return Graphics::PixelFormat::createFormatCLUT8();
|
||||
}
|
||||
inline Common::List<Graphics::PixelFormat> getSupportedFormats() {
|
||||
inline Common::List<Graphics::PixelFormat> getSupportedFormats() const {
|
||||
Common::List<Graphics::PixelFormat> list;
|
||||
list.push_back(Graphics::PixelFormat::createFormatCLUT8());
|
||||
return list;
|
||||
|
Loading…
x
Reference in New Issue
Block a user