Merge branch 'master' of https://github.com/ZDoom/gzdoom into gzdoom-update-4-12-1
This commit is contained in:
commit
112c6cbccf
90 changed files with 1227 additions and 834 deletions
|
|
@ -100,8 +100,8 @@
|
|||
#include "a_dynlight.h"
|
||||
#include "fragglescript/t_fs.h"
|
||||
#include "shadowinlines.h"
|
||||
#include "d_net.h"
|
||||
#include "model.h"
|
||||
#include "d_net.h"
|
||||
|
||||
// MACROS ------------------------------------------------------------------
|
||||
|
||||
|
|
@ -7702,7 +7702,7 @@ const char *AActor::GetTag(const char *def) const
|
|||
const char *tag = Tag->GetChars();
|
||||
if (tag[0] == '$')
|
||||
{
|
||||
return GStrings(tag + 1);
|
||||
return GStrings.GetString(tag + 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -7732,7 +7732,7 @@ const char *AActor::GetCharacterName() const
|
|||
const char *cname = Conversation->SpeakerName.GetChars();
|
||||
if (cname[0] == '$')
|
||||
{
|
||||
return GStrings(cname + 1);
|
||||
return GStrings.GetString(cname + 1);
|
||||
}
|
||||
else return cname;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue