Changed debug channel to "curses" to seperate it from wineconsole.c
and added some trace infomation.
This commit is contained in:
parent
78754341db
commit
7515680a7d
@ -54,7 +54,7 @@
|
|||||||
#include "wine/server.h"
|
#include "wine/server.h"
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(wineconsole);
|
WINE_DEFAULT_DEBUG_CHANNEL(curses);
|
||||||
|
|
||||||
#define PRIVATE(data) ((struct inner_data_curse*)((data)->private))
|
#define PRIVATE(data) ((struct inner_data_curse*)((data)->private))
|
||||||
|
|
||||||
@ -821,7 +821,7 @@ static void WCCURSES_GetEvents(struct inner_data* data)
|
|||||||
|
|
||||||
if ((inchar = wgetch(stdscr)) == ERR) {WINE_FIXME("Ooch. somebody beat us\n");return;}
|
if ((inchar = wgetch(stdscr)) == ERR) {WINE_FIXME("Ooch. somebody beat us\n");return;}
|
||||||
|
|
||||||
WINE_TRACE("Got %d\n", inchar);
|
WINE_TRACE("Got o%o (0x%x)\n", inchar,inchar);
|
||||||
|
|
||||||
if (inchar & KEY_CODE_YES)
|
if (inchar & KEY_CODE_YES)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user