]> git.proxmox.com Git - qemu.git/blobdiff - hw/tc6393xb_template.h
user: Restore debug usage message for '-d ?' in user mode emulation
[qemu.git] / hw / tc6393xb_template.h
index 2c5fb674ea7739aa87c7a8fe9e1280933e94502e..1ccf6e8dfe95958573a9f25987e9343a41107a5f 100644 (file)
@@ -18,8 +18,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #if BITS == 8
 static void glue(tc6393xb_draw_graphic, BITS)(TC6393xbState *s)
 {
     int i;
-    int w_display;
     uint16_t *data_buffer;
     uint8_t *data_display;
 
     data_buffer = s->vram_ptr;
-    w_display = s->scr_width * BITS / 8;
     data_display = ds_get_data(s->ds);
     for(i = 0; i < s->scr_height; i++) {
 #if (BITS == 16)