aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/android/gfx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/android/gfx.cpp')
-rw-r--r--backends/platform/android/gfx.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/backends/platform/android/gfx.cpp b/backends/platform/android/gfx.cpp
index d0fc392681..d7650fb00c 100644
--- a/backends/platform/android/gfx.cpp
+++ b/backends/platform/android/gfx.cpp
@@ -98,8 +98,7 @@ Common::String OSystem_Android::getPixelFormatName(const Graphics::PixelFormat &
void OSystem_Android::initTexture(GLESTexture **texture,
uint width, uint height,
- const Graphics::PixelFormat *format,
- bool alphaPalette) {
+ const Graphics::PixelFormat *format) {
assert(texture);
Graphics::PixelFormat format_clut8 =
Graphics::PixelFormat::createFormatCLUT8();
@@ -135,10 +134,7 @@ void OSystem_Android::initTexture(GLESTexture **texture,
LOGE("unsupported pixel format: %s",
getPixelFormatName(format_new).c_str());
- if (alphaPalette)
- *texture = new GLESPalette8888Texture;
- else
- *texture = new GLESPalette888Texture;
+ *texture = new GLESPalette888Texture;
}
LOGD("new pixel format: %s",
@@ -262,7 +258,7 @@ void OSystem_Android::initSize(uint width, uint height,
GLTHREADCHECK;
#ifdef USE_RGB_COLOR
- initTexture(&_game_texture, width, height, format, false);
+ initTexture(&_game_texture, width, height, format);
#else
_game_texture->allocBuffer(width, height);
_game_texture->fillBuffer(0);