summaryrefslogtreecommitdiff
path: root/beos/beos_font.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'beos/beos_font.cpp')
-rw-r--r--beos/beos_font.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/beos/beos_font.cpp b/beos/beos_font.cpp
index 1d3060cb0..5549c51e6 100644
--- a/beos/beos_font.cpp
+++ b/beos/beos_font.cpp
@@ -219,13 +219,12 @@ bool nsfont_split(const plot_font_style_t *fstyle,
* \param length length of string
* \param x x coordinate
* \param y y coordinate
- * \param c colour for text
* \return true on success, false on error and error reported
*/
bool nsfont_paint(const plot_font_style_t *fstyle,
const char *string, size_t length,
- int x, int y, colour bg, colour c)
+ int x, int y)
{
//fprintf(stderr, "%s(, '%s', %d, %d, %d, )\n", __FUNCTION__, string, length, x, y);
//CALLED();
@@ -240,8 +239,8 @@ bool nsfont_paint(const plot_font_style_t *fstyle,
return true;
nsbeos_style_to_font(font, fstyle);
- background = nsbeos_rgb_colour(bg);
- foreground = nsbeos_rgb_colour(c);
+ background = nsbeos_rgb_colour(fstyle->background);
+ foreground = nsbeos_rgb_colour(fstyle->foreground);
view = nsbeos_current_gc/*_lock*/();
if (view == NULL) {