mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-21 07:25:39 -04:00
System: Include cheevos state in save states
This commit is contained in:
@ -188,6 +188,18 @@ public:
|
||||
Do(data);
|
||||
}
|
||||
|
||||
void SkipBytes(size_t count)
|
||||
{
|
||||
if (m_mode != Mode::Read)
|
||||
{
|
||||
m_error = true;
|
||||
return;
|
||||
}
|
||||
|
||||
if (!m_error)
|
||||
m_error = !m_stream->SeekRelative(static_cast<s64>(count));
|
||||
}
|
||||
|
||||
private:
|
||||
ByteStream* m_stream;
|
||||
Mode m_mode;
|
||||
|
Reference in New Issue
Block a user