mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
- fixed quote init.
This commit is contained in:
parent
72857db17b
commit
6a6d6e3694
1 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ void Quotes::MakeStringLabel(FString "e)
|
||||||
|
|
||||||
void Quotes::InitializeQuote(int num, const char *text, bool fromscript)
|
void Quotes::InitializeQuote(int num, const char *text, bool fromscript)
|
||||||
{
|
{
|
||||||
quotes[num] = num;
|
quotes[num] = text;
|
||||||
if (fromscript) // means this is the initial setup from the source data.
|
if (fromscript) // means this is the initial setup from the source data.
|
||||||
{
|
{
|
||||||
MakeStringLabel(quotes[num]);
|
MakeStringLabel(quotes[num]);
|
||||||
|
@ -55,7 +55,7 @@ void Quotes::InitializeQuote(int num, const char *text, bool fromscript)
|
||||||
|
|
||||||
void Quotes::InitializeExQuote(int num, const char *text, bool fromscript)
|
void Quotes::InitializeExQuote(int num, const char *text, bool fromscript)
|
||||||
{
|
{
|
||||||
exquotes[num] = num;
|
exquotes[num] = text;
|
||||||
if (fromscript) // means this is the initial setup from the source data.
|
if (fromscript) // means this is the initial setup from the source data.
|
||||||
{
|
{
|
||||||
MakeStringLabel(quotes[num]);
|
MakeStringLabel(quotes[num]);
|
||||||
|
|
Loading…
Reference in a new issue