mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Get rid of the "press space to restart" message on mobile. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@4996 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1e8176480d
commit
25668422d8
2 changed files with 7 additions and 6 deletions
|
@ -2376,17 +2376,17 @@ void C_InitQuotes(void)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < 128; i++) C_AllocQuote(i);
|
for (int i = 0; i < 128; i++) C_AllocQuote(i);
|
||||||
|
|
||||||
#if defined(__ANDROID__)
|
#ifdef EDUKE32_TOUCH_DEVICES
|
||||||
Bsprintf(ScriptQuotes[13], "TOUCH ANYWHERE TO CONTINUE");
|
ScriptQuotes[QUOTE_DEAD] = 0;
|
||||||
#else
|
#else
|
||||||
for (int i = MAXQUOTELEN - 7; i >= 0; i--)
|
for (int i = MAXQUOTELEN - 7; i >= 0; i--)
|
||||||
if (Bstrncmp(&ScriptQuotes[13][i], "SPACE", 5) == 0)
|
if (Bstrncmp(&ScriptQuotes[QUOTE_DEAD][i], "SPACE", 5) == 0)
|
||||||
{
|
{
|
||||||
Bmemset(tempbuf, 0, sizeof(tempbuf));
|
Bmemset(tempbuf, 0, sizeof(tempbuf));
|
||||||
Bstrncpy(tempbuf, ScriptQuotes[13], i);
|
Bstrncpy(tempbuf, ScriptQuotes[QUOTE_DEAD], i);
|
||||||
Bstrcat(tempbuf, "USE");
|
Bstrcat(tempbuf, "USE");
|
||||||
Bstrcat(tempbuf, &ScriptQuotes[13][i + 5]);
|
Bstrcat(tempbuf, &ScriptQuotes[QUOTE_DEAD][i + 5]);
|
||||||
Bstrncpy(ScriptQuotes[13], tempbuf, MAXQUOTELEN - 1);
|
Bstrncpy(ScriptQuotes[QUOTE_DEAD], tempbuf, MAXQUOTELEN - 1);
|
||||||
i = MAXQUOTELEN - 7;
|
i = MAXQUOTELEN - 7;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -41,6 +41,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
#define QUOTE_FOUND_SECRET 9
|
#define QUOTE_FOUND_SECRET 9
|
||||||
#define QUOTE_SQUISHED 10
|
#define QUOTE_SQUISHED 10
|
||||||
#define QUOTE_USED_STEROIDS NOBETAQUOTE(12)
|
#define QUOTE_USED_STEROIDS NOBETAQUOTE(12)
|
||||||
|
#define QUOTE_DEAD 13
|
||||||
#define QUOTE_DEACTIVATED 15
|
#define QUOTE_DEACTIVATED 15
|
||||||
#define QUOTE_CHEAT_GODMODE_ON 17
|
#define QUOTE_CHEAT_GODMODE_ON 17
|
||||||
#define QUOTE_CHEAT_GODMODE_OFF 18
|
#define QUOTE_CHEAT_GODMODE_OFF 18
|
||||||
|
|
Loading…
Reference in a new issue