Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkasper93 <kasper93@gmail.com>2014-07-04 01:02:28 +0400
committerkasper93 <kasper93@gmail.com>2014-07-04 01:12:01 +0400
commit3fa366f147323293f4599f76abe7e351474c0bbe (patch)
tree1328ec45821018062820bba2c3e65c1e86f64439
parent583548fdfc7ea54148d42b6616ee912057fd0427 (diff)
Cosmetic: Fix a typo.
-rw-r--r--src/Subtitles/STS.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Subtitles/STS.cpp b/src/Subtitles/STS.cpp
index 68cefe995..81878de1e 100644
--- a/src/Subtitles/STS.cpp
+++ b/src/Subtitles/STS.cpp
@@ -31,10 +31,10 @@
#include "../DSUtil/WinAPIUtils.h"
-static struct htmlcolor{
+static struct htmlcolor {
TCHAR* name;
DWORD color;
-} hmtlcolors[] = {
+} htmlcolors[] = {
{_T("white"), 0xffffff},
{_T("whitesmoke"), 0xf5f5f5},
{_T("ghostwhite"), 0xf8f8ff},
@@ -183,8 +183,8 @@ static struct htmlcolor{
CHtmlColorMap::CHtmlColorMap()
{
- for (size_t i = 0; i < _countof(hmtlcolors); i++) {
- SetAt(hmtlcolors[i].name, hmtlcolors[i].color);
+ for (size_t i = 0; i < _countof(htmlcolors); i++) {
+ SetAt(htmlcolors[i].name, htmlcolors[i].color);
}
}