style cleanup

This commit is contained in:
Chris Danford
2006-03-17 00:15:35 +00:00
parent de4b978da3
commit 4dd5728ee0
2 changed files with 4 additions and 2 deletions
@@ -97,7 +97,9 @@ bool DIDevice::Open()
/* This device doesn't support buffering, so we're forced
* to use less reliable polling. */
buffered = false;
} else if ( hr != DI_OK ) {
}
else if ( hr != DI_OK )
{
LOG->Info( hr_ssprintf(hr, "OpenDevice(%s): IDirectInputDevice2::SetProperty", JoystickInst.tszProductName) );
return false;
}
+1 -1
View File
@@ -26,7 +26,7 @@ struct tm *my_gmtime_r( const time_t *timep, struct tm *result )
void my_usleep( unsigned long usec )
{
Sleep( usec/1000 );
::Sleep( usec/1000 );
}
/*