Skip to content

Commit

Permalink
Merge pull request #28 from ppodhajski/master
Browse files Browse the repository at this point in the history
FIX: Changing speedx to posy and flipping posy with posx
  • Loading branch information
arthurnishimoto authored Feb 12, 2019
2 parents 356735f + ef44ab4 commit db4f0d1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/omicron/omicron/PQService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ void PQService::poll()
float f; arg.popFloat(f);
switch (curSetArg)
{
case(3): x = f; break;
case(4): y = f; break;
case(2): x = f; break;
case(3): y = f; break;
}
//ofmsg( " received Float %1%", %f );
}
Expand Down Expand Up @@ -559,4 +559,5 @@ void PQService::dispose()
#ifdef OMICRON_OS_WIN
DisconnectServer();
#endif
}
}

0 comments on commit db4f0d1

Please sign in to comment.