summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2016-01-10 12:28:49 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2016-01-10 12:28:49 +0000
commit4fd1fbf68cb07f3cb845c7559ddcaf9e42317ca3 (patch)
tree1e59456a11fe316b5523cb1387030f678354e23c
parent3e71a538c343b3341a435ece56f46b39f1bb3b74 (diff)
downloadnetsurf-4fd1fbf68cb07f3cb845c7559ddcaf9e42317ca3.tar.gz
netsurf-4fd1fbf68cb07f3cb845c7559ddcaf9e42317ca3.tar.bz2
Revert "Set a unicode fallback to LetterGothic on OS3"
This reverts commit 3e71a538c343b3341a435ece56f46b39f1bb3b74. This is pointless because the fallback is picked up from the font scan, so we should get text on screen from some other font.
-rw-r--r--amiga/gui.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 8e9fadae0..eefc2c6a6 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -624,22 +624,18 @@ static nserror ami_set_options(struct nsoption_s *defaults)
BPTR lock = 0;
/* Search for some likely candidates */
- if((lock = Lock("FONTS:Code2000.otag", ACCESS_READ))) {
+ if((lock = Lock("FONTS:Code2000.otag", ACCESS_READ)))
+ {
UnLock(lock);
nsoption_set_charp(font_unicode,
(char *)strdup("Code2000"));
- } else if((lock = Lock("FONTS:Bitstream Cyberbit.otag", ACCESS_READ))) {
- UnLock(lock);
- nsoption_set_charp(font_unicode,
- (char *)strdup("Bitstream Cyberbit"));
}
-#ifndef __amigaos4__
- else if((lock = Lock("FONTS:LetterGothic.otag", ACCESS_READ))) {
+ else if((lock = Lock("FONTS:Bitstream Cyberbit.otag", ACCESS_READ)))
+ {
UnLock(lock);
nsoption_set_charp(font_unicode,
- (char *)strdup("LetterGothic"));
+ (char *)strdup("Bitstream Cyberbit"));
}
-#endif
}
if (nsoption_charp(font_surrogate) == NULL) {