Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1228,8 +1228,8 @@ static void saveOptions( void )

//-------------------------------------------------------------------------------------------------
// Set System Time Font Size
val = TheWritableGlobalData->m_systemTimeFontSize; // TheSuperHackers @todo replace with options input when applicable
if (val)
val = pref->getSystemTimeFontSize(); // TheSuperHackers @todo replace with options input when applicable
if (val >= 0)
{
AsciiString prefString;
prefString.format("%d", val);
Expand All @@ -1239,8 +1239,8 @@ static void saveOptions( void )

//-------------------------------------------------------------------------------------------------
// Set Game Time Font Size
val = TheWritableGlobalData->m_gameTimeFontSize; // TheSuperHackers @todo replace with options input when applicable
if (val)
val = pref->getGameTimeFontSize(); // TheSuperHackers @todo replace with options input when applicable
if (val >= 0)
{
AsciiString prefString;
prefString.format("%d", val);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1288,8 +1288,8 @@ static void saveOptions( void )

//-------------------------------------------------------------------------------------------------
// Set System Time Font Size
val = TheWritableGlobalData->m_systemTimeFontSize; // TheSuperHackers @todo replace with options input when applicable
if (val)
val = pref->getSystemTimeFontSize(); // TheSuperHackers @todo replace with options input when applicable
if (val >= 0)
{
AsciiString prefString;
prefString.format("%d", val);
Expand All @@ -1299,8 +1299,8 @@ static void saveOptions( void )

//-------------------------------------------------------------------------------------------------
// Set Game Time Font Size
val = TheWritableGlobalData->m_gameTimeFontSize; // TheSuperHackers @todo replace with options input when applicable
if (val)
val = pref->getGameTimeFontSize(); // TheSuperHackers @todo replace with options input when applicable
if (val >= 0)
{
AsciiString prefString;
prefString.format("%d", val);
Expand Down
Loading