diff options
author | Simon Howard | 2009-09-30 23:07:03 +0000 |
---|---|---|
committer | Simon Howard | 2009-09-30 23:07:03 +0000 |
commit | 410579ec66f7df8757cb980c0a78e3161b7f20d5 (patch) | |
tree | de78df18ecc96327446f554991fad708a84b7ecb /textscreen | |
parent | 42f7a9b8a27ae1192b49005f5be3eba32f740d05 (diff) | |
download | chocolate-doom-410579ec66f7df8757cb980c0a78e3161b7f20d5.tar.gz chocolate-doom-410579ec66f7df8757cb980c0a78e3161b7f20d5.tar.bz2 chocolate-doom-410579ec66f7df8757cb980c0a78e3161b7f20d5.zip |
Change British English spellings to American English, for consistency.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1699
Diffstat (limited to 'textscreen')
-rw-r--r-- | textscreen/txt_inputbox.c | 2 | ||||
-rw-r--r-- | textscreen/txt_main.h | 2 | ||||
-rw-r--r-- | textscreen/txt_sdl.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/textscreen/txt_inputbox.c b/textscreen/txt_inputbox.c index 9151d431..3e52bae9 100644 --- a/textscreen/txt_inputbox.c +++ b/textscreen/txt_inputbox.c @@ -53,7 +53,7 @@ static void TXT_InputBoxDrawer(TXT_UNCAST_ARG(inputbox), int selected) w = inputbox->widget.w; - // Select the background colour based on whether we are currently + // Select the background color based on whether we are currently // editing, and if not, whether the widget is selected. if (inputbox->editing && selected) diff --git a/textscreen/txt_main.h b/textscreen/txt_main.h index 4357d656..add30fa3 100644 --- a/textscreen/txt_main.h +++ b/textscreen/txt_main.h @@ -67,7 +67,7 @@ typedef enum TXT_COLOR_BRIGHT_WHITE, } txt_color_t; -// Initialise the screen +// Initialize the screen // Returns 1 if successful, 0 if failed. int TXT_Init(void); diff --git a/textscreen/txt_sdl.c b/textscreen/txt_sdl.c index bc98a51b..0b11aeab 100644 --- a/textscreen/txt_sdl.c +++ b/textscreen/txt_sdl.c @@ -162,7 +162,7 @@ static void ChooseFont(void) } // -// Initialise text mode screen +// Initialize text mode screen // // Returns 1 if successful, 0 if an error occurred // |