BizHawk/waterbox/melon/BizPlatform/BizUserData.h

20 lines
234 B
C++

#ifndef BIZUSERDATA_H
#define BIZUSERDATA_H
#include "types.h"
namespace melonDS::Platform
{
struct BizUserData
{
bool NdsSaveRamIsDirty;
bool GbaSaveRamIsDirty;
u8 MicVolume;
int MicSamplePos;
};
}
#endif