summaryrefslogblamecommitdiffstats
path: root/src/video_core/pica.cpp
blob: 543d9c443dad5556fd39209e3e4243f153aef84e (plain) (tree)



















                                            
// 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));
}

}