- New: On Windows, the game now checks the registry to see if you have Steam
installed. If so, it checks your SteamApps directory for any IWADs you may have purchased through Steam and adds any it finds to the list of available IWADs you can play. This means that if you bought your id games through Steam, you can just extract ZDoom anywhere you like and run it without doing any additional setup. SVN r581 (trunk)
This commit is contained in:
parent
1eca84d644
commit
1dede60c5c
6 changed files with 86 additions and 1 deletions
|
|
@ -156,6 +156,15 @@ FString::~FString ()
|
|||
Data()->Release();
|
||||
}
|
||||
|
||||
char *FString::LockNewBuffer(size_t len)
|
||||
{
|
||||
Data()->Release();
|
||||
AllocBuffer(len);
|
||||
assert(Data()->RefCount == 1);
|
||||
Data()->RefCount = -1;
|
||||
return Chars;
|
||||
}
|
||||
|
||||
char *FString::LockBuffer()
|
||||
{
|
||||
if (Data()->RefCount == 1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue