diff options
Diffstat (limited to 'engines/parallaction/gui_ns.cpp')
| -rw-r--r-- | engines/parallaction/gui_ns.cpp | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/engines/parallaction/gui_ns.cpp b/engines/parallaction/gui_ns.cpp index 51d3ba5799..ef1a8a6e7e 100644 --- a/engines/parallaction/gui_ns.cpp +++ b/engines/parallaction/gui_ns.cpp @@ -18,13 +18,11 @@   * along with this program; if not, write to the Free Software   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.   * - * $URL$ - * $Id$ - *   */  #include "common/system.h"  #include "common/hashmap.h" +#include "common/textconsole.h"  #include "parallaction/gui.h"  #include "parallaction/input.h" @@ -474,7 +472,7 @@ class SelectCharacterInputState_NS : public MenuInputState {  public:  	SelectCharacterInputState_NS(Parallaction_ns *vm, MenuInputHelper *helper) : MenuInputState("selectcharacter", helper), _vm(vm) {  		_keys = (_vm->getPlatform() == Common::kPlatformAmiga && (_vm->getFeatures() & GF_LANG_MULT)) ? _amigaKeys : _pcKeys; -		_block.create(BLOCK_WIDTH, BLOCK_HEIGHT, 1); +		_block.create(BLOCK_WIDTH, BLOCK_HEIGHT, Graphics::PixelFormat::createFormatCLUT8());  		_labels[0] = 0;  		_labels[1] = 0; @@ -625,7 +623,7 @@ public:  		_vm->_soundManI->stopMusic();  		_vm->showSlide("password"); -		_emptySlots.create(BLOCK_WIDTH * 8, BLOCK_HEIGHT, 1); +		_emptySlots.create(BLOCK_WIDTH * 8, BLOCK_HEIGHT, Graphics::PixelFormat::createFormatCLUT8());  		Common::Rect rect(SLOT_X, SLOT_Y, SLOT_X + BLOCK_WIDTH * 8, SLOT_Y + BLOCK_HEIGHT);  		_vm->_gfx->grabBackground(rect, _emptySlots);  | 
