mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-27 11:00:50 +00:00
850102bbdc
Movies: Rewrote format to support all IO devices and console types Netplay: Now supports all IO devices and console types
13 lines
266 B
C
13 lines
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;
|
|
}
|
|
}; |