diff options
Diffstat (limited to 'src/video_core/pica.cpp')
| -rw-r--r-- | src/video_core/pica.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/video_core/pica.cpp b/src/video_core/pica.cpp new file mode 100644 index 000000000..543d9c443 --- /dev/null +++ b/src/video_core/pica.cpp | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | // Copyright 2015 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include <string.h> | ||
| 6 | |||
| 7 | #include "pica.h" | ||
| 8 | |||
| 9 | namespace Pica { | ||
| 10 | |||
| 11 | State g_state; | ||
| 12 | |||
| 13 | void Init() { | ||
| 14 | } | ||
| 15 | |||
| 16 | void Shutdown() { | ||
| 17 | memset(&g_state, 0, sizeof(State)); | ||
| 18 | } | ||
| 19 | |||
| 20 | } | ||