Updated forms

svn-id: r13874
This commit is contained in:
Chris Apers 2004-05-25 13:56:11 +00:00
parent 9f40696ff3
commit c6b2992465
3 changed files with 7 additions and 12 deletions

View file

@ -82,7 +82,7 @@ static void SystemInfoFormInit() {
frmP = FrmGetActiveForm();
FrmDrawForm(frmP);
WinSetTextColor(255);
WinSetTextColor(UIColorGetTableEntryIndex(UIObjectForeground));
FntSetFont(stdFont);
StrIToA(num, dm);

View file

@ -5,6 +5,7 @@
#include "skin.h"
#include "games.h"
#include "scumm_globals.h"
#include "globals.h"
#include "stdafx.h"
#include "version.h"
@ -106,13 +107,8 @@ static Boolean MainFormDoCommand(UInt16 command)
handled = true;
break;
case MainOptionsVolumeControl:
FrmPopupForm(VolumeForm);
handled = true;
break;
case MainOptionsMusic:
FrmPopupForm(SoundForm);
case MainOptionsMusicSound:
FrmPopupForm(MusicForm);
handled = true;
break;
@ -122,7 +118,7 @@ static Boolean MainFormDoCommand(UInt16 command)
break;
case MainOptionsMisc:
FrmPopupForm(MiscOptionsForm);
FrmPopupForm(MiscForm);
handled = true;
break;
}

View file

@ -12,11 +12,10 @@
HANDLER(Main)
HANDLER(EditGame)
HANDLER(Volume)
HANDLER(SystemInfo)
HANDLER(Sound)
HANDLER(MiscOptions)
HANDLER(Misc)
HANDLER(CardSlot)
HANDLER(Skins)
HANDLER(Music)
#endif