added debug and fixed style

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9493 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval
2004-10-24 22:56:07 +00:00
parent ca4719945c
commit 5a23ac2600
@@ -326,7 +326,8 @@ MouseInputDevice::DeviceWatcher(void *arg)
uint32 buttons = buttons_state ^ movements.buttons; uint32 buttons = buttons_state ^ movements.buttons;
LOG("%s: buttons: 0x%lx, x: %ld, y: %ld, clicks:%ld\n", dev->device_ref.name, movements.buttons, movements.xdelta, movements.ydelta, movements.clicks); LOG("%s: buttons: 0x%lx, x: %ld, y: %ld, clicks:%ld, wheel_x:%ld, wheel_y:%ld\n", dev->device_ref.name, movements.buttons,
movements.xdelta, movements.ydelta, movements.clicks, movements.wheel_xdelta, movements.wheel_ydelta);
// TODO: add acceleration computing // TODO: add acceleration computing
int32 xdelta = movements.xdelta * dev->settings.accel.speed >> 15; int32 xdelta = movements.xdelta * dev->settings.accel.speed >> 15;
@@ -405,12 +406,12 @@ MouseInputDevice::RecursiveScan(const char *directory)
{ {
CALLED(); CALLED();
bool found_ps2 = false; bool found_ps2 = false;
BEntry entry; BEntry entry;
BDirectory dir(directory); BDirectory dir(directory);
while (dir.GetNextEntry(&entry) == B_OK) { while (dir.GetNextEntry(&entry) == B_OK) {
BPath path; BPath path;
entry.GetPath(&path); entry.GetPath(&path);
char name[B_FILE_NAME_LENGTH]; char name[B_FILE_NAME_LENGTH];
entry.GetName(name); entry.GetName(name);
if (strcmp(name, "ps2")==0) if (strcmp(name, "ps2")==0)
@@ -419,10 +420,10 @@ MouseInputDevice::RecursiveScan(const char *directory)
continue; continue;
if (entry.IsDirectory()) if (entry.IsDirectory())
RecursiveScan(path.Path()); RecursiveScan(path.Path());
else else
AddDevice(path.Path()); AddDevice(path.Path());
} }
} }