summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar ShizZy2013-10-06 09:24:46 -0400
committerGravatar ShizZy2013-10-06 09:24:46 -0400
commit8a95dd3f11b7a6066297807c3fde19551e3c6464 (patch)
tree853c8904b75c93430b46f5033b4696fa8d609f67 /src
parentmoved some core functions over to system module (diff)
downloadyuzu-8a95dd3f11b7a6066297807c3fde19551e3c6464.tar.gz
yuzu-8a95dd3f11b7a6066297807c3fde19551e3c6464.tar.xz
yuzu-8a95dd3f11b7a6066297807c3fde19551e3c6464.zip
fixed a typo in declaration of meta file system
Diffstat (limited to 'src')
-rw-r--r--src/core/src/system.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/src/system.cpp b/src/core/src/system.cpp
index 545362694..6a2c13c96 100644
--- a/src/core/src/system.cpp
+++ b/src/core/src/system.cpp
@@ -29,8 +29,8 @@
29 29
30namespace System { 30namespace System {
31 31
32extern volatile State g_state; 32volatile State g_state;
33extern MetaFileSystem g_ctr_file_system; 33MetaFileSystem g_ctr_file_system;
34 34
35void UpdateState(State state) { 35void UpdateState(State state) {
36} 36}