mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-23 17:39:43 +00:00
gcc compatibility fix
This commit is contained in:
parent
cc86fe54d5
commit
493b1ff081
1 changed files with 7 additions and 1 deletions
|
@ -375,13 +375,19 @@ void WindowManager::onClassChoice(MyGUI::WidgetPtr, int _index)
|
|||
}
|
||||
}
|
||||
|
||||
void WindowManager::showClassQuestionDialog()
|
||||
namespace MWGui
|
||||
{
|
||||
|
||||
struct Step
|
||||
{
|
||||
const char* text;
|
||||
const char* buttons[3];
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
void WindowManager::showClassQuestionDialog()
|
||||
{
|
||||
static boost::array<Step, 2> steps = { {
|
||||
{"On a clear day you chance upon a strange animal, its legs trapped in a hunter's clawsnare. Judging from the bleeding, it will not survive long.",
|
||||
{"Use herbs from your pack to put it to sleep?",
|
||||
|
|
Loading…
Reference in a new issue