mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 06:32:00 +00:00
wither reported that findkeysforcommandex wasn't present in menuqc. Fix that.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@6264 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
89c37774ae
commit
ce01181d88
2 changed files with 4 additions and 3 deletions
|
@ -2652,6 +2652,7 @@ static struct {
|
|||
{"getresolution", PF_cl_getresolution, 608},
|
||||
{"keynumtostring", PF_cl_keynumtostring, 609},
|
||||
{"findkeysforcommand", PF_cl_findkeysforcommand, 610},
|
||||
{"findkeysforcommandex", PF_cl_findkeysforcommandex, 0},
|
||||
{"gethostcachevalue", PF_cl_gethostcachevalue, 611},
|
||||
{"gethostcachestring", PF_cl_gethostcachestring, 612},
|
||||
{"parseentitydata", PF_parseentitydata, 613},
|
||||
|
|
|
@ -13733,9 +13733,9 @@ void PR_DumpPlatform_f(void)
|
|||
{"FILE_READ", "const float", ALL, D("The file may be read via fgets to read a single line at a time."), FRIK_FILE_READ},
|
||||
{"FILE_APPEND", "const float", ALL, D("Like FILE_WRITE, but writing starts at the end of the file."), FRIK_FILE_APPEND},
|
||||
{"FILE_WRITE", "const float", ALL, D("fputs will be used to write to the file."), FRIK_FILE_WRITE},
|
||||
{"FILE_READNL", "const float", QW|NQ|CS, D("Like FILE_READ, except newlines are not special. fgets reads the entire file into a tempstring."), FRIK_FILE_READNL},
|
||||
{"FILE_MMAP_READ", "const float", QW|NQ|CS, D("The file will be loaded into memory. fgets returns a pointer to the first byte (and will always return the same value for this file). Cast this to your datatype."), FRIK_FILE_MMAP_READ},
|
||||
{"FILE_MMAP_RW", "const float", QW|NQ|CS, D("Like FILE_MMAP_READ, except any changes to the data will be written back to disk once the file is closed."), FRIK_FILE_MMAP_RW},
|
||||
{"FILE_READNL", "const float", ALL, D("Like FILE_READ, except newlines are not special. fgets reads the entire file into a tempstring."), FRIK_FILE_READNL},
|
||||
{"FILE_MMAP_READ", "const float", ALL, D("The file will be loaded into memory. fgets returns a pointer to the first byte (and will always return the same value for this file). Cast this to your datatype."), FRIK_FILE_MMAP_READ},
|
||||
{"FILE_MMAP_RW", "const float", ALL, D("Like FILE_MMAP_READ, except any changes to the data will be written back to disk once the file is closed."), FRIK_FILE_MMAP_RW},
|
||||
|
||||
{"MASK_ENGINE", "const float", CS, D("Valid as an argument for addentities. If specified, all non-csqc entities will be added to the scene."), MASK_DELTA},
|
||||
{"MASK_VIEWMODEL", "const float", CS, D("Valid as an argument for addentities. If specified, the regular engine viewmodel will be added to the scene."), MASK_STDVIEWMODEL},
|
||||
|
|
Loading…
Reference in a new issue