diff options
| author | Joost Peters | 2003-06-06 13:44:49 +0000 |
|---|---|---|
| committer | Joost Peters | 2003-06-06 13:44:49 +0000 |
| commit | d813deb5e801aaa74e06b27643542c7ae36ec545 (patch) | |
| tree | ef4751844d5f2f063e2ad4012a0885894ccabe65 | |
| parent | 6e0a3ec6fa89015f3ca8983d7d4af440362d8be7 (diff) | |
| download | scummvm-rg350-d813deb5e801aaa74e06b27643542c7ae36ec545.tar.gz scummvm-rg350-d813deb5e801aaa74e06b27643542c7ae36ec545.tar.bz2 scummvm-rg350-d813deb5e801aaa74e06b27643542c7ae36ec545.zip | |
changed warning() to error(), this is how it is in the original, and this seems to happen when you try to exit the underground-bar currently, don't know why yet.
svn-id: r8351
| -rw-r--r-- | sky/text.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sky/text.cpp b/sky/text.cpp index 2db13aa624..54c2117246 100644 --- a/sky/text.cpp +++ b/sky/text.cpp @@ -253,7 +253,7 @@ displayText_t SkyText::displayText(char *textPtr, uint8 *dest, bool centre, uint if (pixelWidth <= lineWidth) { if (*(lastSpace-1) == 10) - warning("line width exceeded!"); + error("line width exceeded!"); *(lastSpace-1) = 10; lineWidth = 0; |
