diff options
| author | Kari Salminen | 2007-07-10 15:45:30 +0000 |
|---|---|---|
| committer | Kari Salminen | 2007-07-10 15:45:30 +0000 |
| commit | be23a6e1889f35cfa086729b7bd360d5cd5939bf (patch) | |
| tree | 43c9b049c7bcf6a0bef1330b380ca16f8e183ef1 | |
| parent | 80cdd532bc8460d23b2562cafe336bedcbe6fb18 (diff) | |
| download | scummvm-rg350-be23a6e1889f35cfa086729b7bd360d5cd5939bf.tar.gz scummvm-rg350-be23a6e1889f35cfa086729b7bd360d5cd5939bf.tar.bz2 scummvm-rg350-be23a6e1889f35cfa086729b7bd360d5cd5939bf.zip | |
Change AgiTextColor's default color to black text on white background.
svn-id: r28010
| -rw-r--r-- | engines/agi/agi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/agi/agi.h b/engines/agi/agi.h index 216cb47e45..5fe1b1b04b 100644 --- a/engines/agi/agi.h +++ b/engines/agi/agi.h @@ -320,8 +320,8 @@ struct AgiBlock { /** AGI text color (Background and foreground color). */ struct AgiTextColor { - /** Creates an AGI text color. Uses white text on black background by default. */ - AgiTextColor(int fgColor = 0x0F, int bgColor = 0x00) : fg(fgColor), bg(bgColor) {} + /** Creates an AGI text color. Uses black text on white background by default. */ + AgiTextColor(int fgColor = 0x00, int bgColor = 0x0F) : fg(fgColor), bg(bgColor) {} /** Get an AGI text color with swapped foreground and background color. */ AgiTextColor swap() const { return AgiTextColor(bg, fg); } |
