diff --git a/Source/Project64/User Interface/WTL Controls/ModifiedEditBox.cpp b/Source/Project64/User Interface/WTL Controls/ModifiedEditBox.cpp
index d87c05bb1..cbdb5062b 100644
--- a/Source/Project64/User Interface/WTL Controls/ModifiedEditBox.cpp	
+++ b/Source/Project64/User Interface/WTL Controls/ModifiedEditBox.cpp	
@@ -23,84 +23,84 @@ m_bString(bString)
 
 CModifiedEditBox::~CModifiedEditBox()
 {
-	if (m_BoldFont)
-	{
-		DeleteObject(m_BoldFont);
-	}
+    if (m_BoldFont)
+    {
+        DeleteObject(m_BoldFont);
+    }
 }
 
 void CModifiedEditBox::SetReset(bool Reset)
 {
-	m_Reset = Reset;
-	if (m_Reset)
-	{
-		SetChanged(false);
-	}
+    m_Reset = Reset;
+    if (m_Reset)
+    {
+        SetChanged(false);
+    }
 }
 
 void CModifiedEditBox::SetChanged(bool Changed)
 {
-	m_Changed = Changed;
-	if (m_Changed)
-	{
-		SetReset(false);
-		if (m_BoldFont == NULL)
-		{
-			m_OriginalFont = (HFONT)SendMessage(WM_GETFONT);
+    m_Changed = Changed;
+    if (m_Changed)
+    {
+        SetReset(false);
+        if (m_BoldFont == NULL)
+        {
+            m_OriginalFont = (HFONT)SendMessage(WM_GETFONT);
 
-			LOGFONT lfSystemVariableFont;
-			GetObject(m_OriginalFont, sizeof(LOGFONT), &lfSystemVariableFont);
-			lfSystemVariableFont.lfWeight = FW_BOLD;
+            LOGFONT lfSystemVariableFont;
+            GetObject(m_OriginalFont, sizeof(LOGFONT), &lfSystemVariableFont);
+            lfSystemVariableFont.lfWeight = FW_BOLD;
 
-			m_BoldFont = CreateFontIndirect(&lfSystemVariableFont);
-		}
-		SendMessage(WM_SETFONT, (WPARAM)m_BoldFont);
-		InvalidateRect(NULL);
-		if (m_TextField)
-		{
-			::SendMessage(m_TextField, WM_SETFONT, (WPARAM)m_BoldFont, 0);
-			::InvalidateRect(m_TextField, NULL, true);
-		}
-	}
-	else
-	{
-		if (m_OriginalFont)
-		{
-			SendMessage(WM_SETFONT, (WPARAM)m_OriginalFont);
-			InvalidateRect(NULL);
-			if (m_TextField)
-			{
-				::SendMessage(m_TextField, WM_SETFONT, (WPARAM)m_OriginalFont, 0);
-				::InvalidateRect(m_TextField, NULL, true);
-			}
-		}
-	}
+            m_BoldFont = CreateFontIndirect(&lfSystemVariableFont);
+        }
+        SendMessage(WM_SETFONT, (WPARAM)m_BoldFont);
+        InvalidateRect(NULL);
+        if (m_TextField)
+        {
+            ::SendMessage(m_TextField, WM_SETFONT, (WPARAM)m_BoldFont, 0);
+            ::InvalidateRect(m_TextField, NULL, true);
+        }
+    }
+    else
+    {
+        if (m_OriginalFont)
+        {
+            SendMessage(WM_SETFONT, (WPARAM)m_OriginalFont);
+            InvalidateRect(NULL);
+            if (m_TextField)
+            {
+                ::SendMessage(m_TextField, WM_SETFONT, (WPARAM)m_OriginalFont, 0);
+                ::InvalidateRect(m_TextField, NULL, true);
+            }
+        }
+    }
 }
 
 stdstr CModifiedEditBox::GetWindowText(void)
 {
-	stdstr Result;
-	ATLASSERT(::IsWindow(m_hWnd));
+    stdstr Result;
+    ATLASSERT(::IsWindow(m_hWnd));
 
-	int nLen = ::GetWindowTextLength(m_hWnd);
-	if (nLen == 0)
-	{
-		return Result;
-	}
-	Result.resize(nLen + 1);
-	::GetWindowText(m_hWnd, (char *)Result.c_str(), nLen + 1);
-	return Result;
+    int nLen = ::GetWindowTextLength(m_hWnd);
+    if (nLen == 0)
+    {
+        return Result;
+    }
+    Result.resize(nLen + 1);
+    ::GetWindowText(m_hWnd, (char *)Result.c_str(), nLen + 1);
+    return Result;
 }
 
 void CModifiedEditBox::SetTextField(HWND hWnd)
 {
-	if (m_TextField && m_OriginalFont)
-	{
-		::SendMessage(m_TextField, WM_SETFONT, (WPARAM)m_OriginalFont, 0);
-	}
-	m_TextField = hWnd;
-	if (m_Changed && m_BoldFont)
-	{
-		::SendMessage(m_TextField, WM_SETFONT, (WPARAM)m_BoldFont, 0);
-	}
-}
+    if (m_TextField && m_OriginalFont)
+    {
+        ::SendMessage(m_TextField, WM_SETFONT, (WPARAM)m_OriginalFont, 0);
+    }
+    m_TextField = hWnd;
+    if (m_Changed && m_BoldFont)
+    {
+        ::SendMessage(m_TextField, WM_SETFONT, (WPARAM)m_BoldFont, 0);
+    }
+}
\ No newline at end of file