diff options
-rw-r--r-- | audio/softsynth/mt32.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/softsynth/mt32.cpp b/audio/softsynth/mt32.cpp index 3a3958d494..a980b564fc 100644 --- a/audio/softsynth/mt32.cpp +++ b/audio/softsynth/mt32.cpp @@ -315,9 +315,9 @@ int MidiDriver_MT32::open() { if (screenFormat.bytesPerPixel == 1) { const byte dummy_palette[] = { - 0, 0, 0, 0, // background - 0, 171, 0, 0, // border, font - 171, 0, 0, 0 // fill + 0, 0, 0, // background + 0, 171, 0, // border, font + 171, 0, 0 // fill }; g_system->getPaletteManager()->setPalette(dummy_palette, 0, 3); |