mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-04 07:41:58 +00:00
Fixed some (pedantic) warnings
svn-id: r44015
This commit is contained in:
parent
f1683ae5fe
commit
37e51f1575
engines
graphics/scaler
@ -986,7 +986,8 @@ uint16 Hotspots::updateInput(uint16 xPos, uint16 yPos, uint16 width, uint16 heig
|
||||
((_vm->_global->_useMouse != 0) || (_vm->_game->_forceHandleMouse != 0)))
|
||||
handleMouse = true;
|
||||
|
||||
while (_vm->_global->_pressedKeys[1] != 0);
|
||||
while (_vm->_global->_pressedKeys[1] != 0)
|
||||
;
|
||||
continue;
|
||||
|
||||
default:
|
||||
|
@ -624,7 +624,8 @@ void MDYPlayer::interpret() {
|
||||
ctrlByte2 = *(_playPos++);
|
||||
if (ctrlByte1 != 0x7F || ctrlByte2 != 0) {
|
||||
_playPos -= 2;
|
||||
while (*(_playPos++) != 0xF7);
|
||||
while (*(_playPos++) != 0xF7)
|
||||
;
|
||||
} else {
|
||||
tempoMult = *(_playPos++);
|
||||
tempoFrac = *(_playPos++);
|
||||
|
@ -297,7 +297,7 @@ void Cursor_v2::decodeFrame(byte *pal, byte *data, byte *dest) {
|
||||
|
||||
byte ctrA = 0, ctrB = 0;
|
||||
|
||||
byte alpha, palIdx;
|
||||
byte alpha = 0, palIdx = 0;
|
||||
|
||||
byte r, g, b;
|
||||
|
||||
|
@ -203,7 +203,7 @@ void SegManager::saveLoadWithSerializer(Common::Serializer &s) {
|
||||
|
||||
s.skip(4); // base_value
|
||||
while (true) {
|
||||
uint32 key;
|
||||
uint32 key = 0;
|
||||
s.syncAsSint32LE(key);
|
||||
if (key == INTMAPPER_MAGIC_KEY)
|
||||
break;
|
||||
|
@ -111,7 +111,7 @@ static bool grabScreen565(Graphics::Surface *surf) {
|
||||
|
||||
for (uint y = 0; y < screen->h; ++y) {
|
||||
for (uint x = 0; x < screen->w; ++x) {
|
||||
byte r, g, b;
|
||||
byte r = 0, g = 0, b = 0;
|
||||
|
||||
if (screenFormat.bytesPerPixel == 1) {
|
||||
r = palette[((uint8*)screen->pixels)[y * screen->pitch + x] * 4];
|
||||
|
Loading…
x
Reference in New Issue
Block a user