mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
- Fix invocation name in FileSystem::GetLongName()
error output.
* Thanks to @Gaerzi for spotting this.
This commit is contained in:
parent
a920fc5aef
commit
1d0924e45a
1 changed files with 1 additions and 1 deletions
|
@ -914,7 +914,7 @@ LumpShortName& FileSystem::GetShortName(int i)
|
|||
|
||||
FString& FileSystem::GetLongName(int i)
|
||||
{
|
||||
if ((unsigned)i >= NumEntries) I_Error("GetShortName: Invalid index");
|
||||
if ((unsigned)i >= NumEntries) I_Error("GetLongName: Invalid index");
|
||||
return FileInfo[i].longName;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue