aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/font.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/parallaction/font.cpp')
-rw-r--r--engines/parallaction/font.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/parallaction/font.cpp b/engines/parallaction/font.cpp
index 56c26b7b4f..13e94a4cda 100644
--- a/engines/parallaction/font.cpp
+++ b/engines/parallaction/font.cpp
@@ -408,7 +408,7 @@ void AmigaFont::drawString(byte *buffer, uint32 pitch, const char *s) {
}
-Font *DosDisk::createFont(const char *name, Cnv* cnv) {
+Font *DosDisk_ns::createFont(const char *name, Cnv* cnv) {
Font *f = 0;
if (!scumm_stricmp(name, "comic"))
@@ -425,7 +425,7 @@ Font *DosDisk::createFont(const char *name, Cnv* cnv) {
return f;
}
-Font *AmigaDisk::createFont(const char *name, Common::SeekableReadStream &stream) {
+Font *AmigaDisk_ns::createFont(const char *name, Common::SeekableReadStream &stream) {
// TODO: implement AmigaLabelFont for labels
return new AmigaFont(stream);
}