mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 13:18:50 +00:00
Final typo and error fixes and include reordering
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@372 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
531230c03d
commit
f8b4311b66
6 changed files with 37 additions and 22 deletions
|
@ -20,7 +20,6 @@
|
|||
#include "MemoryUtil.h"
|
||||
#include "Thread.h"
|
||||
#include "OpcodeDecoding.h"
|
||||
#include "pluginspecs_video.h"
|
||||
|
||||
#include "Fifo.h"
|
||||
|
||||
|
@ -33,6 +32,13 @@ static u8 *videoBuffer;
|
|||
static int size = 0;
|
||||
static int readptr = 0;
|
||||
|
||||
void Fifo_DoState(ChunkFile &f) {
|
||||
f.Do(size);
|
||||
f.DoArray(videoBuffer, size);
|
||||
|
||||
f.Do(readptr);
|
||||
}
|
||||
|
||||
void Fifo_Init()
|
||||
{
|
||||
videoBuffer = (u8*)AllocateMemoryPages(FIFO_SIZE);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue