Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Osc in Mixxx + ARM64/2.6 (20241104) #13835

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
eve osc ok 20241002
  • Loading branch information
evelynnev committed Oct 2, 2024
commit fc216c75afb834cc94eabd62e5a9d810f5c6c2c6
2 changes: 1 addition & 1 deletion src/osc/ip/win32/UdpSocket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
above license is reproduced.
*/

#include <mmsystem.h> // for timeGetTime()
#include <windows.h>
#include <winsock2.h> // this must come first to prevent errors with MSVC7
// #include <mmsystem.h> // for timeGetTime()

#ifndef WINCE
#include <signal.h>
Expand Down
4 changes: 2 additions & 2 deletions src/osc/oscreceiver.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <mmsystem.h>

Check failure on line 1 in src/osc/oscreceiver.cpp

View workflow job for this annotation

GitHub Actions / macOS 12 x64

'mmsystem.h' file not found

Check failure on line 1 in src/osc/oscreceiver.cpp

View workflow job for this annotation

GitHub Actions / macOS 12 arm64

'mmsystem.h' file not found

Check failure on line 1 in src/osc/oscreceiver.cpp

View workflow job for this annotation

GitHub Actions / coverage

mmsystem.h: No such file or directory

Check failure on line 1 in src/osc/oscreceiver.cpp

View workflow job for this annotation

GitHub Actions / clazy

'mmsystem.h' file not found

#include <QThread>
#include <bitset>
Expand Down Expand Up @@ -121,7 +121,7 @@
"",
0,
0,
0 + m_poscPCP->get());
(float)m_poscPCP->get());
qDebug() << "OSC Msg Snd: Group, Key: Value: "
<< oscIn.oscGroup << "," << oscIn.oscKey << ":"
// << m_posPCPValue;
Expand All @@ -144,7 +144,7 @@
"",
0,
0,
ControlObject::getControl(
(float)ControlObject::getControl(
oscIn.oscGroup, oscIn.oscKey)
->get());
}
Expand Down
Loading