diff options
author | Kari Salminen | 2008-08-03 08:01:11 +0000 |
---|---|---|
committer | Kari Salminen | 2008-08-03 08:01:11 +0000 |
commit | b76f7668885ad706edc8d4a1037b663438ea5b8c (patch) | |
tree | 1aa7da1ae0bf8c87100c03cadb409d768f1f9000 /engines/kyra | |
parent | 4984a28ca50aa4e942e34f3f47b008fb0228060e (diff) | |
download | scummvm-rg350-b76f7668885ad706edc8d4a1037b663438ea5b8c.tar.gz scummvm-rg350-b76f7668885ad706edc8d4a1037b663438ea5b8c.tar.bz2 scummvm-rg350-b76f7668885ad706edc8d4a1037b663438ea5b8c.zip |
Shut up MSVC warning about mgY being an unreferenced local variable.
svn-id: r33561
Diffstat (limited to 'engines/kyra')
-rw-r--r-- | engines/kyra/sequences_hof.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/kyra/sequences_hof.cpp b/engines/kyra/sequences_hof.cpp index d7a2b17fdd..832014ae3b 100644 --- a/engines/kyra/sequences_hof.cpp +++ b/engines/kyra/sequences_hof.cpp @@ -2750,7 +2750,8 @@ void KyraEngine_HoF::seq_displayScrollText(uint8 *data, const ScreenDim *d, int } void KyraEngine_HoF::seq_scrollPage(int bottom, int top) { - int dstY, dstH, srcH, mgY; + int dstY, dstH, srcH; + //int mgY; static const ScreenDim d = { 0x00, 0x00, 0x28, 0x320, 0xFF, 0xFE, 0x00, 0x00 }; |