mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 23:29:17 +00:00
Merge pull request #3998 from comex/warning-fixes-951
Fix more warnings:
This commit is contained in:
commit
8de6800e9d
2 changed files with 2 additions and 1 deletions
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…
Add table
Add a link
Reference in a new issue