David Fries:
64bit fixes
This commit is contained in:
parent
f3677a4ddf
commit
91f0059c89
1 changed files with 2 additions and 4 deletions
|
@ -91,8 +91,7 @@ bool FGJsClient::process() {
|
|||
if ( io->get_type() == sgFileType ) {
|
||||
if ( io->read( (char *)(& buf), length ) == length ) {
|
||||
SG_LOG( SG_IO, SG_DEBUG, "Success reading data." );
|
||||
long int *msg;
|
||||
msg = (long int *)buf;
|
||||
int32_t *msg = (int32_t *)buf;
|
||||
for( int i = 0; i < 4; ++i )
|
||||
{
|
||||
axis[i] = ((double)msg[i] / 2147483647.0);
|
||||
|
@ -105,8 +104,7 @@ bool FGJsClient::process() {
|
|||
} else {
|
||||
while ( io->read( (char *)(& buf), length ) == length ) {
|
||||
SG_LOG( SG_IO, SG_DEBUG, "Success reading data." );
|
||||
long int *msg;
|
||||
msg = (long int *)buf;
|
||||
int32_t *msg = (int32_t *)buf;
|
||||
SG_LOG( SG_IO, SG_DEBUG, "ax0 = " << msg[0] << " ax1 = "
|
||||
<< msg[1] << "ax2 = " << msg[2] << "ax3 = " << msg[3]);
|
||||
for( int i = 0; i < 4; ++i )
|
||||
|
|
Loading…
Add table
Reference in a new issue