summaryrefslogtreecommitdiff
path: root/textscreen
diff options
context:
space:
mode:
Diffstat (limited to 'textscreen')
-rw-r--r--textscreen/txt_inputbox.c2
-rw-r--r--textscreen/txt_main.h2
-rw-r--r--textscreen/txt_sdl.c2
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
//