aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics
diff options
context:
space:
mode:
authorFilippos Karapetis2011-10-09 19:56:17 +0300
committerFilippos Karapetis2011-10-09 19:56:51 +0300
commit90a11586e21d06c150f98842a62f2a5ae7857bb5 (patch)
treee128ecdf8436d67dfd680254fff0052cc750d0d1 /engines/sci/graphics
parentd8da625e5ed4fb8c3ec7de32541181c032963072 (diff)
downloadscummvm-rg350-90a11586e21d06c150f98842a62f2a5ae7857bb5.tar.gz
scummvm-rg350-90a11586e21d06c150f98842a62f2a5ae7857bb5.tar.bz2
scummvm-rg350-90a11586e21d06c150f98842a62f2a5ae7857bb5.zip
SCI: CreateTextBitmap should return a pointer. Also, silenced a warning
Diffstat (limited to 'engines/sci/graphics')
-rw-r--r--engines/sci/graphics/text32.cpp7
-rw-r--r--engines/sci/graphics/text32.h2
2 files changed, 6 insertions, 3 deletions
diff --git a/engines/sci/graphics/text32.cpp b/engines/sci/graphics/text32.cpp
index 6ec1261a88..7be3874ed0 100644
--- a/engines/sci/graphics/text32.cpp
+++ b/engines/sci/graphics/text32.cpp
@@ -56,7 +56,7 @@ void GfxText32::purgeCache() {
_textCache.clear();
}
-void GfxText32::createTextBitmap(reg_t textObject, uint16 maxWidth, uint16 maxHeight) {
+reg_t GfxText32::createTextBitmap(reg_t textObject, uint16 maxWidth, uint16 maxHeight) {
if (_textCache.size() >= MAX_CACHED_TEXTS)
purgeCache();
@@ -71,6 +71,9 @@ void GfxText32::createTextBitmap(reg_t textObject, uint16 maxWidth, uint16 maxHe
}
_textCache[textId] = createTextEntry(textObject, maxWidth, maxHeight);
+
+ // TODO: Create a new hunk pointer with the created surface
+ return NULL_REG;
}
// TODO: Finish this!
@@ -176,7 +179,7 @@ TextEntry *GfxText32::createTextEntry(reg_t textObject, uint16 maxWidth, uint16
memset(newEntry->surface, 0, newEntry->width * newEntry->height);
newEntry->text = _segMan->getString(stringObject);
- int16 maxTextWidth = 0, charCount = 0;
+ int16 /*maxTextWidth = 0,*/ charCount = 0;
uint16 curX = 0, curY = 0;
while (*text) {
diff --git a/engines/sci/graphics/text32.h b/engines/sci/graphics/text32.h
index 620bcfc155..113fbb46a2 100644
--- a/engines/sci/graphics/text32.h
+++ b/engines/sci/graphics/text32.h
@@ -51,7 +51,7 @@ class GfxText32 {
public:
GfxText32(SegManager *segMan, GfxCache *fonts, GfxScreen *screen);
~GfxText32();
- void createTextBitmap(reg_t textObject, uint16 maxWidth = 0, uint16 maxHeight = 0);
+ reg_t createTextBitmap(reg_t textObject, uint16 maxWidth = 0, uint16 maxHeight = 0);
void drawTextBitmap(reg_t textObject, uint16 textX, uint16 textY, uint16 planeWidth);
int16 GetLongest(const char *text, int16 maxWidth, GfxFont *font);
TextEntry *getTextEntry(reg_t textObject);