Pica: Create 'State' structure and move state memory there.

This commit is contained in:
bunnei 2015-05-13 23:29:27 -04:00
parent 4c207798b4
commit 1b42d55a9d
15 changed files with 461 additions and 438 deletions

20
src/video_core/pica.cpp Normal file
View file

@ -0,0 +1,20 @@
// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <string.h>
#include "pica.h"
namespace Pica {
State g_state;
void Init() {
}
void Shutdown() {
memset(&g_state, 0, sizeof(State));
}
}