mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-04-01 10:06:42 +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
|
struct Step
|
||||||
{
|
{
|
||||||
const char* text;
|
const char* text;
|
||||||
const char* buttons[3];
|
const char* buttons[3];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void WindowManager::showClassQuestionDialog()
|
||||||
|
{
|
||||||
static boost::array<Step, 2> steps = { {
|
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.",
|
{"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?",
|
{"Use herbs from your pack to put it to sleep?",
|
||||||
|
|
Loading…
Reference in a new issue