disable some log messages.

This commit is contained in:
sorgelig
2019-07-28 00:26:10 +08:00
parent 7e517b3140
commit 71791a30f7
2 changed files with 2 additions and 2 deletions

View File

@@ -3200,7 +3200,7 @@ void input_notify_mode()
void input_switch(int grab)
{
if (grab >= 0) grabbed = grab;
printf("input_switch(%d), grabbed = %d\n", grab, grabbed);
//printf("input_switch(%d), grabbed = %d\n", grab, grabbed);
for (int i = 0; i < NUMDEV; i++)
{

View File

@@ -2906,7 +2906,7 @@ void user_io_check_reset(unsigned short modifiers, char useKeys)
void user_io_osd_key_enable(char on)
{
printf("OSD is now %s\n", on ? "visible" : "invisible");
//printf("OSD is now %s\n", on ? "visible" : "invisible");
osd_is_visible = on;
input_switch(-1);
}