diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2019-09-22 16:47:59 +0200 | 
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-09-22 16:51:51 +0200 | 
| commit | e36f509d2459ca74c0dc7fe2e8ea2275b88f0649 (patch) | |
| tree | 2f62ae2004ef9fb2dcaceb7ded7bd404e41bbd92 /proto-wine | |
| parent | 4063f006285db0473046bde645f236c814460eb0 (diff) | |
api: expose raw data to protocols
Issue: #975
Diffstat (limited to 'proto-wine')
| -rw-r--r-- | proto-wine/ftnoir_protocol_wine.cpp | 2 | ||||
| -rw-r--r-- | proto-wine/ftnoir_protocol_wine.h | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/proto-wine/ftnoir_protocol_wine.cpp b/proto-wine/ftnoir_protocol_wine.cpp index 23e929df..2e618ff9 100644 --- a/proto-wine/ftnoir_protocol_wine.cpp +++ b/proto-wine/ftnoir_protocol_wine.cpp @@ -26,7 +26,7 @@ wine::~wine()      //shm_unlink("/" WINE_SHM_NAME);  } -void wine::pose( const double *headpose ) +void wine::pose(const double *headpose, const double*)  {      if (shm)      { diff --git a/proto-wine/ftnoir_protocol_wine.h b/proto-wine/ftnoir_protocol_wine.h index b4cbd305..ed142f83 100644 --- a/proto-wine/ftnoir_protocol_wine.h +++ b/proto-wine/ftnoir_protocol_wine.h @@ -21,7 +21,7 @@ public:      ~wine() override;      module_status initialize() override; -    void pose(const double* headpose) override; +    void pose(const double* headpose, const double*) override;      QString game_name() override      {  | 
