- 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:
Randy Heit 2007-12-06 19:15:07 +00:00
commit 1dede60c5c
6 changed files with 86 additions and 1 deletions

View file

@ -130,6 +130,9 @@ public:
~FString ();
// Discard string's contents, create a new buffer, and lock it.
char *LockNewBuffer(size_t len);
char *LockBuffer(); // Obtain write access to the character buffer
void UnlockBuffer(); // Allow shared access to the character buffer
@ -232,6 +235,7 @@ public:
size_t Len() const { return Data()->Len; }
bool IsEmpty() const { return Len() == 0; }
bool IsNotEmpty() const { return Len() != 0; }
void Truncate (long newlen);