summaryrefslogtreecommitdiff
path: root/amiga/gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'amiga/gui.c')
-rw-r--r--amiga/gui.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index dd4daafac..5d11bdae4 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -477,8 +477,11 @@ colour_option_from_pen(UWORD pen,
/* exported interface documented in amiga/gui.h */
STRPTR ami_gui_get_screen_title(void)
{
- if(nsscreentitle == NULL)
+ if(nsscreentitle == NULL) {
nsscreentitle = ASPrintf("NetSurf %s", netsurf_version);
+ /* If this fails it will be NULL, which means we'll get the screen's
+ * default titlebar text instead - so no need to check for error. */
+ }
return nsscreentitle;
}