mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 14:46:49 +01:00
Merge pull request #3998 from comex/warning-fixes-951
Fix more warnings:
This commit is contained in:
commit
8de6800e9d
1
Externals/soundtouch/CMakeLists.txt
vendored
1
Externals/soundtouch/CMakeLists.txt
vendored
@ -16,3 +16,4 @@ set(SRCS
|
|||||||
)
|
)
|
||||||
|
|
||||||
add_library(SoundTouch STATIC ${SRCS})
|
add_library(SoundTouch STATIC ${SRCS})
|
||||||
|
add_definitions(-w)
|
||||||
|
@ -722,7 +722,7 @@ bool NetPlayClient::StartGame(const std::string& path)
|
|||||||
// Needed to prevent locking up at boot if (when) the wiimotes connect out of order.
|
// Needed to prevent locking up at boot if (when) the wiimotes connect out of order.
|
||||||
NetWiimote nw;
|
NetWiimote nw;
|
||||||
nw.resize(4, 0);
|
nw.resize(4, 0);
|
||||||
m_wiimote_current_data_size = {4, 4, 4, 4};
|
m_wiimote_current_data_size.fill(4);
|
||||||
|
|
||||||
for (unsigned int w = 0; w < 4; ++w)
|
for (unsigned int w = 0; w < 4; ++w)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user