File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -1228,8 +1228,8 @@ static void saveOptions( void )
1228
1228
1229
1229
// -------------------------------------------------------------------------------------------------
1230
1230
// Set System Time Font Size
1231
- val = TheWritableGlobalData-> m_systemTimeFontSize ; // TheSuperHackers @todo replace with options input when applicable
1232
- if (val)
1231
+ val = pref-> getSystemTimeFontSize () ; // TheSuperHackers @todo replace with options input when applicable
1232
+ if (val >= 0 )
1233
1233
{
1234
1234
AsciiString prefString;
1235
1235
prefString.format (" %d" , val);
@@ -1239,8 +1239,8 @@ static void saveOptions( void )
1239
1239
1240
1240
// -------------------------------------------------------------------------------------------------
1241
1241
// Set Game Time Font Size
1242
- val = TheWritableGlobalData-> m_gameTimeFontSize ; // TheSuperHackers @todo replace with options input when applicable
1243
- if (val)
1242
+ val = pref-> getGameTimeFontSize () ; // TheSuperHackers @todo replace with options input when applicable
1243
+ if (val >= 0 )
1244
1244
{
1245
1245
AsciiString prefString;
1246
1246
prefString.format (" %d" , val);
Original file line number Diff line number Diff line change @@ -1288,8 +1288,8 @@ static void saveOptions( void )
1288
1288
1289
1289
// -------------------------------------------------------------------------------------------------
1290
1290
// Set System Time Font Size
1291
- val = TheWritableGlobalData-> m_systemTimeFontSize ; // TheSuperHackers @todo replace with options input when applicable
1292
- if (val)
1291
+ val = pref-> getSystemTimeFontSize () ; // TheSuperHackers @todo replace with options input when applicable
1292
+ if (val >= 0 )
1293
1293
{
1294
1294
AsciiString prefString;
1295
1295
prefString.format (" %d" , val);
@@ -1299,8 +1299,8 @@ static void saveOptions( void )
1299
1299
1300
1300
// -------------------------------------------------------------------------------------------------
1301
1301
// Set Game Time Font Size
1302
- val = TheWritableGlobalData-> m_gameTimeFontSize ; // TheSuperHackers @todo replace with options input when applicable
1303
- if (val)
1302
+ val = pref-> getGameTimeFontSize () ; // TheSuperHackers @todo replace with options input when applicable
1303
+ if (val >= 0 )
1304
1304
{
1305
1305
AsciiString prefString;
1306
1306
prefString.format (" %d" , val);
You can’t perform that action at this time.
0 commit comments