Core: Move a global into a namespace

This commit is contained in:
Lioncash
2015-10-16 22:52:38 -04:00
parent c0d157e6f6
commit c756025902
4 changed files with 11 additions and 11 deletions

View File

@ -74,12 +74,12 @@
#define ThreadLocalStorage __thread
#endif
// TODO: ugly, remove
bool g_aspect_wide;
namespace Core
{
// TODO: ugly, remove
bool g_aspect_wide;
bool g_want_determinism;
// Declarations and definitions

View File

@ -16,12 +16,12 @@
#include "Common/CommonTypes.h"
// TODO: ugly, remove
extern bool g_aspect_wide;
namespace Core
{
// TODO: ugly, remove
extern bool g_aspect_wide;
extern bool g_want_determinism;
bool GetIsFramelimiterTempDisabled();