Skip to content

Commit 890d720

Browse files
committed
Some more mucking around
1 parent 3671e7e commit 890d720

File tree

5 files changed

+19
-18
lines changed

5 files changed

+19
-18
lines changed

MUSHclient.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ BOOL CMUSHclientApp::InitInstance()
389389

390390
// Set the debug-heap flag so that freed blocks are kept on the
391391
// linked list, to catch any inadvertent use of freed memory
392-
SET_CRT_DEBUG_FIELD( _CRTDBG_DELAY_FREE_MEM_DF );
392+
// SET_CRT_DEBUG_FIELD( _CRTDBG_DELAY_FREE_MEM_DF );
393393
SET_CRT_DEBUG_FIELD( _CRTDBG_LEAK_CHECK_DF );
394394
// SET_CRT_DEBUG_FIELD( _CRTDBG_CHECK_ALWAYS_DF );
395395
// speed warning: see: _ASSERTE( _CrtCheckMemory( ) );
@@ -505,7 +505,7 @@ BOOL CMUSHclientApp::InitInstance()
505505

506506
// the activity window
507507

508-
m_pActivityDocTemplate = new CMultiDocTemplate(
508+
m_pActivityDocTemplate = new CMultiDocTemplate(
509509
IDR_ACTIVITYTYPE,
510510
RUNTIME_CLASS(CActivityDoc),
511511
RUNTIME_CLASS(CActivityChildFrame), // custom MDI child frame

MUSHclient.dsp

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dialogs/plugins/PluginsDlg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ int iColOrder [eColumnCount] = {0, 1, 2, 3, 4, 5, 6},
115115
// recover column sequence
116116

117117
m_ctlPluginList.SendMessage (LVM_SETCOLUMNORDERARRAY, eColumnCount, (DWORD) iColOrder);
118-
118+
119119
CWindowPlacement wp;
120120
wp.Restore ("Plugins List", this, false);
121121

doc.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -984,6 +984,7 @@ class CMUSHclientDoc : public CDocument
984984
CTime m_tLastPlayerInput; // time the player last typed something (for <afk> )
985985
CTimeSpan m_tsConnectDuration; // timespan we have been connected
986986
CTime m_whenWorldStarted; // when world document started
987+
LARGE_INTEGER m_whenWorldStartedHighPrecision;
987988

988989

989990
CTime m_tStatusTime; // time of line that mouse was over

mushview.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1140,7 +1140,7 @@ previousLineHPtime.QuadPart = 0;
11401140
fElapsedTime = pLine->m_theTime.GetTime () - (double) previousLineTime;
11411141
}
11421142

1143-
strElapsedTime.Format ("%0.6f", fElapsedTime);
1143+
strElapsedTime.Format ("%10.6f", fElapsedTime);
11441144

11451145
// %D = elapsed time
11461146
strPreamble.Replace ("%D", strElapsedTime);

0 commit comments

Comments
 (0)