[Glide64] Move system settings id in to Settings.cpp
This commit is contained in:
parent
4561494303
commit
d070196cd2
|
@ -50,8 +50,6 @@
|
||||||
#include "trace.h"
|
#include "trace.h"
|
||||||
#include <Common/StdString.h>
|
#include <Common/StdString.h>
|
||||||
|
|
||||||
short Set_basic_mode = 0, Set_texture_dir = 0, Set_log_dir = 0, Set_log_flush = 0;
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include <Common/CriticalSection.h>
|
#include <Common/CriticalSection.h>
|
||||||
#include "resource.h"
|
#include "resource.h"
|
||||||
|
|
|
@ -49,7 +49,6 @@ void ConfigCleanup(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
extern short Set_basic_mode, Set_texture_dir, Set_log_dir, Set_log_flush;
|
|
||||||
|
|
||||||
extern void general_setting(short setting_ID, const char * name, unsigned int value);
|
extern void general_setting(short setting_ID, const char * name, unsigned int value);
|
||||||
extern void game_setting(short setting_ID, const char * name, unsigned int value);
|
extern void game_setting(short setting_ID, const char * name, unsigned int value);
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
int GetCurrentResIndex(void);
|
int GetCurrentResIndex(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
short Set_basic_mode = 0, Set_texture_dir = 0, Set_log_dir = 0, Set_log_flush = 0;
|
||||||
|
|
||||||
CSettings::CSettings() :
|
CSettings::CSettings() :
|
||||||
card_id(0),
|
card_id(0),
|
||||||
res_x(640),
|
res_x(640),
|
||||||
|
|
|
@ -7,6 +7,8 @@
|
||||||
#include <Common/LogClass.h>
|
#include <Common/LogClass.h>
|
||||||
#include <Settings/Settings.h>
|
#include <Settings/Settings.h>
|
||||||
|
|
||||||
|
extern short Set_log_dir, Set_log_flush;
|
||||||
|
|
||||||
#ifdef ANDROID
|
#ifdef ANDROID
|
||||||
#include <android/log.h>
|
#include <android/log.h>
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,8 @@
|
||||||
#include <Glide64/Config.h>
|
#include <Glide64/Config.h>
|
||||||
#include <Settings/Settings.h>
|
#include <Settings/Settings.h>
|
||||||
|
|
||||||
|
extern short Set_log_dir;
|
||||||
|
|
||||||
TxDbg::TxDbg()
|
TxDbg::TxDbg()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue