mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 03:56:20 +00:00
CGE2: Reduce the scope of a variable
This commit is contained in:
parent
1769003a9b
commit
0b81ffedd4
@ -722,10 +722,9 @@ void CGE2Engine::loadTab() {
|
||||
|
||||
if (_resman->exist(kTabName)) {
|
||||
EncryptedStream f(this, kTabName);
|
||||
uint32 v;
|
||||
|
||||
for (int i = 0; i < kSceneMax; i++) {
|
||||
v = f.readUint32LE();
|
||||
uint32 v = f.readUint32LE();
|
||||
_eyeTab[i]->_x = FXP(v >> 8, static_cast<int>((int8)(v & 0xff)));
|
||||
|
||||
v = f.readUint32LE();
|
||||
|
Loading…
Reference in New Issue
Block a user