git: ignore /build directory [skip ci]

This commit is contained in:
ds 2020-10-04 11:12:39 +03:00
commit 19b0dd030c
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View file

@ -6,3 +6,5 @@ vc/release
vc/debug vc/debug
vc/.vs vc/.vs
vc/enc_temp_folder vc/enc_temp_folder
build/

View file

@ -448,7 +448,7 @@ CR_EXPORT int GetEntityAPI (gamefuncs_t *table, int) {
} }
CR_LINKAGE_C int GetEntityAPI_Post (gamefuncs_t *table, int) { CR_LINKAGE_C int GetEntityAPI_Post (gamefuncs_t *table, int) {
// this function is called right after ssToDll() by the engine in the game DLL (or // this function is called right after GiveFnptrsToDll() by the engine in the game DLL (or
// what it BELIEVES to be the game DLL), in order to copy the list of MOD functions that can // what it BELIEVES to be the game DLL), in order to copy the list of MOD functions that can
// be called by the engine, into a memory block pointed to by the functionTable pointer // be called by the engine, into a memory block pointed to by the functionTable pointer
// that is passed into this function (explanation comes straight from botman). This allows // that is passed into this function (explanation comes straight from botman). This allows