From 8a95dd3f11b7a6066297807c3fde19551e3c6464 Mon Sep 17 00:00:00 2001 From: ShizZy Date: Sun, 6 Oct 2013 09:24:46 -0400 Subject: [PATCH] fixed a typo in declaration of meta file system --- src/core/src/system.cpp | 4 ++-- 1 file 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 @@ namespace System { -extern volatile State g_state; -extern MetaFileSystem g_ctr_file_system; +volatile State g_state; +MetaFileSystem g_ctr_file_system; void UpdateState(State state) { }