mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-01-18 23:52:02 +00:00
Expose SafeCommand confirmation string to language.
This commit is contained in:
parent
c557c463e4
commit
92697659be
2 changed files with 3 additions and 2 deletions
|
@ -121,7 +121,8 @@ public:
|
||||||
|
|
||||||
bool Activate()
|
bool Activate()
|
||||||
{
|
{
|
||||||
M_StartMessage("Do you really want to do this?", 0);
|
const char *msg = GStrings("SAFEMESSAGE");
|
||||||
|
if (msg) M_StartMessage(msg, 0);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -2324,7 +2324,7 @@ OPTSTR_OPENAL = "OpenAL";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
SAFEMESSAGE = "Do you really want to do this?";
|
||||||
MNU_COLORPICKER = "SELECT COLOR";
|
MNU_COLORPICKER = "SELECT COLOR";
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue