Fixed warning of variable not used.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@282 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2004-06-25 13:32:16 +00:00
parent 4977085d49
commit e703bffe5d
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
//
// $Id: CartUA.cxx,v 1.1 2004-06-25 03:44:12 bwmott Exp $
// $Id: CartUA.cxx,v 1.2 2004-06-25 13:32:16 stephena Exp $
//============================================================================
#include <cassert>
@ -144,7 +144,7 @@ void CartridgeUA::bank(uInt16 bank)
myCurrentBank = bank;
uInt16 offset = myCurrentBank * 4096;
uInt16 shift = mySystem->pageShift();
uInt16 mask = mySystem->pageMask();
// uInt16 mask = mySystem->pageMask();
// Setup the page access methods for the current bank
System::PageAccess access;