(BlackBerry) Get rid of some debug prints.

This commit is contained in:
CatalystG 2013-05-28 18:59:14 -04:00
parent c3077bd4fe
commit 58b2a6b9d6
2 changed files with 0 additions and 10 deletions

View File

@ -158,8 +158,6 @@ void RetroArch::run()
{
case RETROARCH_START_REQUESTED:
{
printf("RetroArch Started Received\n");fflush(stdout);
MsgReply(rcvid,0,NULL,0);
if (screen_create_window_type(&screen_win, screen_ctx, SCREEN_CHILD_WINDOW) != BPS_SUCCESS)

View File

@ -128,22 +128,16 @@ void discoverControllers()
pads_connected = 0;
printf("Searching for Controllers...\n");fflush(stdout);
for (i = 0; i < deviceCount; i++)
{
int type;
screen_get_device_property_iv(devices_found[i], SCREEN_PROPERTY_TYPE, &type);
printf("Device Found...\n");fflush(stdout);
if (type == SCREEN_EVENT_GAMEPAD || type == SCREEN_EVENT_JOYSTICK || type == SCREEN_EVENT_KEYBOARD)
{
devices[pads_connected].handle = devices_found[i];
loadController(&devices[pads_connected]);
printf("Gamepad...\n");fflush(stdout);
pads_connected++;
if (pads_connected == MAX_PADS)
break;
@ -151,8 +145,6 @@ void discoverControllers()
}
free(devices_found);
printf("Pads: %d\n", pads_connected);fflush(stdout);
}
#else
void init_playbook_keyboard()