]> source.dussan.org Git - tigervnc.git/commitdiff
Removed unused variable
authorPeter Åstrand <astrand@cendio.se>
Wed, 10 Dec 2008 10:15:19 +0000 (10:15 +0000)
committerPeter Åstrand <astrand@cendio.se>
Wed, 10 Dec 2008 10:15:19 +0000 (10:15 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3350 3789f03b-4d11-0410-bbf8-ca57d06f2519

win/rfb_win32/DeviceFrameBuffer.cxx

index 8da894e017f940ebdc66304a28ed1e6e078e9c08..b1e56a3e2982117674f4426c78d41572fa20a590 100644 (file)
@@ -233,7 +233,6 @@ void DeviceFrameBuffer::setCursor(HCURSOR hCursor, VNCServer* server)
     if (!iconInfo.hbmColor) {
       Pixel xorColour = format.pixelFromRGB(0, 0, 0, cursorBm.getColourMap());
       for (int y = 0; y < cursor.height(); y++) {
-        bool first = true;
         for (int x = 0; x < cursor.width(); x++) {
           int byte = y * maskInfo.bmWidthBytes + x / 8;
           int bit = 7 - x % 8;