Merge pull request #3998 from comex/warning-fixes-951
Fix more warnings:
This commit is contained in:
commit
8de6800e9d
|
@ -16,3 +16,4 @@ set(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.
|
||||
NetWiimote nw;
|
||||
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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue