- backend update from Raze.
This commit is contained in:
parent
fe1514ce04
commit
b5294e9e90
6 changed files with 54 additions and 34 deletions
|
|
@ -912,6 +912,12 @@ LumpShortName& FileSystem::GetShortName(int i)
|
|||
return FileInfo[i].shortName;
|
||||
}
|
||||
|
||||
FString& FileSystem::GetLongName(int i)
|
||||
{
|
||||
if ((unsigned)i >= NumEntries) I_Error("GetLongName: Invalid index");
|
||||
return FileInfo[i].longName;
|
||||
}
|
||||
|
||||
void FileSystem::RenameFile(int num, const char* newfn)
|
||||
{
|
||||
if ((unsigned)num >= NumEntries) I_Error("RenameFile: Invalid index");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue