Mesen-SX/Core/ControlDeviceState.h
2019-02-17 20:29:29 -05:00

13 lines
No EOL
266 B
C

#pragma once
#include "stdafx.h"
#include <cstring>
struct ControlDeviceState
{
vector<uint8_t> State;
bool operator!=(ControlDeviceState &other)
{
return State.size() != other.State.size() || memcmp(State.data(), other.State.data(), State.size()) != 0;
}
};