mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Core: Move a global into a namespace
This commit is contained in:
@ -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
|
||||
|
@ -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();
|
||||
|
Reference in New Issue
Block a user