mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-23 09:55:35 +00:00
Fixed compiler warnings
This commit is contained in:
parent
d59a926837
commit
1dc9180fb6
|
@ -197,7 +197,7 @@ IsWindowsVersionOrGreater(WORD wMajorVersion, WORD wMinorVersion, WORD wServiceP
|
|||
VER_MINORVERSION, VER_GREATER_EQUAL ),
|
||||
VER_SERVICEPACKMAJOR, VER_GREATER_EQUAL );
|
||||
|
||||
SDL_zero( osvi );
|
||||
memset(&osvi, 0, sizeof(osvi));
|
||||
osvi.dwOSVersionInfoSize = sizeof( osvi );
|
||||
osvi.dwMajorVersion = wMajorVersion;
|
||||
osvi.dwMinorVersion = wMinorVersion;
|
||||
|
@ -751,7 +751,6 @@ static int hid_write_timeout(hid_device *dev, const unsigned char *data, size_t
|
|||
{
|
||||
DWORD bytes_written;
|
||||
BOOL res;
|
||||
size_t stashed_length = length;
|
||||
unsigned char *buf;
|
||||
|
||||
if (dev->use_hid_write_output_report) {
|
||||
|
|
Loading…
Reference in a new issue