added core_timing and system modules to core vcproj

This commit is contained in:
ShizZy 2013-10-01 19:10:47 -04:00
parent 4c24ea3d88
commit 9d79fc7aa6
6 changed files with 823 additions and 2 deletions

View file

@ -31,8 +31,6 @@
namespace System {
extern MetaFileSystem g_ctr_file_system;
// State of the full emulator
typedef enum {
STATE_NULL = 0, ///< System is in null state, nothing initialized
@ -46,6 +44,7 @@ typedef enum {
} State;
extern volatile State g_state;
extern MetaFileSystem g_ctr_file_system;
void UpdateState(State state);
void Init();