mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 06:41:41 +00:00
Fix method member being a qualified name
This breaks the Linux build with GCC. This is non-standard behavior, but apparently Visual Studio allows it.
This commit is contained in:
parent
2c7ceaf96a
commit
077de36139
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ struct FLevelLocals
|
|||
{
|
||||
void Tick ();
|
||||
void AddScroller (int secnum);
|
||||
void FLevelLocals::SetInterMusic(const char *nextmap);
|
||||
void SetInterMusic(const char *nextmap);
|
||||
|
||||
uint8_t md5[16]; // for savegame validation. If the MD5 does not match the savegame won't be loaded.
|
||||
int time; // time in the hub
|
||||
|
|
Loading…
Reference in a new issue