MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / SkipBytes

Method SkipBytes

pcsx2/StateWrapper.h:254–264  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

252 }
253
254 void SkipBytes(u32 count)
255 {
256 if (m_mode != Mode::Read)
257 {
258 m_error = true;
259 return;
260 }
261
262 if (!m_error)
263 m_error = !m_stream->SeekRelative(static_cast<s32>(count));
264 }
265
266private:
267 IStream* m_stream;

Callers 1

DoStateMethod · 0.80

Calls 1

SeekRelativeMethod · 0.80

Tested by

no test coverage detected