Skip to content

Commit

Permalink
LAB: Remove some unnecessary casts
Browse files Browse the repository at this point in the history
  • Loading branch information
wjp committed Dec 27, 2015
1 parent 6626493 commit a49ffcd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions engines/lab/dispman.cpp
Expand Up @@ -379,10 +379,10 @@ void DisplayMan::rectFill(Common::Rect fillRect, byte color) {
height = _screenHeight - fillRect.top;

if ((width > 0) && (height > 0)) {
char *d = (char *)getCurrentDrawingBuffer() + fillRect.top * _screenWidth + fillRect.left;
byte *d = getCurrentDrawingBuffer() + fillRect.top * _screenWidth + fillRect.left;

while (height-- > 0) {
char *dd = d;
byte *dd = d;
int ww = width;

while (ww-- > 0) {
Expand Down
8 changes: 4 additions & 4 deletions engines/lab/intro.cpp
Expand Up @@ -83,10 +83,10 @@ void Intro::doPictText(const Common::String filename, bool isScreen) {
bool begin = true;

Common::File *textFile = _vm->_resource->openDataFile(path);
byte *textBuffer = new byte[textFile->size()];
char *textBuffer = new char[textFile->size()];
textFile->read(textBuffer, textFile->size());
delete textFile;
byte *curText = textBuffer;
const char *curText = textBuffer;

while (1) {
if (drawNextText) {
Expand All @@ -98,10 +98,10 @@ void Intro::doPictText(const Common::String filename, bool isScreen) {
if (isScreen) {
_vm->_graphics->rectFillScaled(10, 10, 310, 190, 7);

curText += _vm->_graphics->flowText(_font, _vm->_isHiRes ? 0 : -1, 5, 7, false, false, true, true, _vm->_utils->vgaRectScale(14, 11, 306, 189), (char *)curText);
curText += _vm->_graphics->flowText(_font, _vm->_isHiRes ? 0 : -1, 5, 7, false, false, true, true, _vm->_utils->vgaRectScale(14, 11, 306, 189), curText);
_vm->_graphics->fade(true);
} else
curText += _vm->_graphics->longDrawMessage(Common::String((char *)curText), false);
curText += _vm->_graphics->longDrawMessage(Common::String(curText), false);

doneFl = (*curText == 0);

Expand Down
4 changes: 2 additions & 2 deletions engines/lab/music.cpp
Expand Up @@ -104,7 +104,7 @@ void Music::playSoundEffect(uint16 sampleSpeed, uint32 length, bool loop, Common
byte *soundData = (byte *)malloc(length);
dataFile->read(soundData, length);

Audio::SeekableAudioStream *audioStream = Audio::makeRawStream((const byte *)soundData, length, sampleSpeed, getSoundFlags());
Audio::SeekableAudioStream *audioStream = Audio::makeRawStream(soundData, length, sampleSpeed, getSoundFlags());
uint loops = (loop) ? 0 : 1;
Audio::LoopingAudioStream *loopingAudioStream = new Audio::LoopingAudioStream(audioStream, loops);
_vm->_mixer->playStream(Audio::Mixer::kSFXSoundType, &_sfxHandle, loopingAudioStream);
Expand All @@ -130,7 +130,7 @@ byte *Music::fillBuffer() {
} else {
_file->read(musicBuffer, _leftInFile);

memset((char *)musicBuffer + _leftInFile, 0, MUSICBUFSIZE - _leftInFile);
memset(musicBuffer + _leftInFile, 0, MUSICBUFSIZE - _leftInFile);

_file->seek(0);
_leftInFile = _file->size();
Expand Down

0 comments on commit a49ffcd

Please sign in to comment.