aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/pica.cpp
blob: 543d9c443dad5556fd39209e3e4243f153aef84e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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));
}

}