Remove debug print

This commit is contained in:
Stanislav Shwartsman 2007-11-18 18:27:09 +00:00
parent cdc9a09090
commit b75a1d9ea5
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: main.cc,v 1.364 2007-11-18 18:24:44 sshwarts Exp $
// $Id: main.cc,v 1.365 2007-11-18 18:27:09 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002 MandrakeSoft S.A.
@ -1234,8 +1234,8 @@ void bx_signal_handler(int signum)
bx_gui->show_ips((Bit32u) ips_count);
ticks_count = bx_pc_system.time_ticks();
counts++;
printf("MIPS: %u\tticks/counts = %u\t(%us)\n",
(unsigned) ips_count, (unsigned) (ticks_count/counts), (unsigned) counts);
// printf("MIPS: %u\tticks/counts = %u\t(%us)\n",
// (unsigned) ips_count, (unsigned) (ticks_count/counts), (unsigned) counts);
}
#if !defined(__MINGW32__) && !defined(_MSC_VER)
signal(SIGALRM, bx_signal_handler);