Renamed client/*.cpp to .c files where appropriate
This commit is contained in:
parent
caf39bd2ef
commit
2489e4d872
11 changed files with 35 additions and 35 deletions
|
@ -19,7 +19,7 @@ defs.h
|
|||
|
||||
../voice.c
|
||||
../sound.c
|
||||
../text.c
|
||||
../prints.c
|
||||
../util.c
|
||||
|
||||
../../shared/cstrike/weaponak47.c
|
||||
|
@ -59,11 +59,11 @@ defs.h
|
|||
../../shared/pmove.c
|
||||
|
||||
../sky.c
|
||||
../fade.cpp
|
||||
../fade.c
|
||||
../sprite.cpp
|
||||
../titles.cpp
|
||||
../text.cpp
|
||||
../sentences.cpp
|
||||
../titles.c
|
||||
../text.c
|
||||
../sentences.c
|
||||
|
||||
../../gs-entbase/client.src
|
||||
|
||||
|
|
|
@ -18,15 +18,15 @@
|
|||
../../vgui/include.src
|
||||
../util.c
|
||||
../sky.c
|
||||
../fade.cpp
|
||||
../fade.c
|
||||
../sprite.cpp
|
||||
../titles.cpp
|
||||
../text.cpp
|
||||
../sentences.cpp
|
||||
../titles.c
|
||||
../text.c
|
||||
../sentences.c
|
||||
|
||||
../../gs-entbase/client.src
|
||||
../sound.c
|
||||
../text.c
|
||||
../prints.c
|
||||
../voice.c
|
||||
../../shared/valve/animations.h
|
||||
../../shared/valve/animations.c
|
||||
|
|
|
@ -22,18 +22,18 @@
|
|||
init.c
|
||||
|
||||
../sky.c
|
||||
../fade.cpp
|
||||
../fade.c
|
||||
../sprite.cpp
|
||||
../titles.cpp
|
||||
../text.cpp
|
||||
../sentences.cpp
|
||||
../titles.c
|
||||
../text.c
|
||||
../sentences.c
|
||||
|
||||
../../gs-entbase/client.src
|
||||
|
||||
decore.cpp
|
||||
|
||||
../sound.c
|
||||
../text.c
|
||||
../prints.c
|
||||
../voice.c
|
||||
|
||||
../../shared/valve/animations.h
|
||||
|
|
|
@ -20,16 +20,16 @@
|
|||
../util.c
|
||||
|
||||
../sky.c
|
||||
../fade.cpp
|
||||
../fade.c
|
||||
../sprite.cpp
|
||||
../titles.cpp
|
||||
../text.cpp
|
||||
../sentences.cpp
|
||||
../titles.c
|
||||
../text.c
|
||||
../sentences.c
|
||||
|
||||
../../gs-entbase/client.src
|
||||
|
||||
../sound.c
|
||||
../text.c
|
||||
../prints.c
|
||||
../voice.c
|
||||
|
||||
../../shared/valve/animations.h
|
||||
|
|
|
@ -23,16 +23,16 @@ vgui_chooseteam.cpp
|
|||
init.c
|
||||
|
||||
../sky.c
|
||||
../fade.cpp
|
||||
../fade.c
|
||||
../sprite.cpp
|
||||
../titles.cpp
|
||||
../text.cpp
|
||||
../sentences.cpp
|
||||
../titles.c
|
||||
../text.c
|
||||
../sentences.c
|
||||
|
||||
../../gs-entbase/client.src
|
||||
|
||||
../sound.c
|
||||
../text.c
|
||||
../prints.c
|
||||
../voice.c
|
||||
|
||||
../../shared/valve/animations.h
|
||||
|
|
|
@ -21,16 +21,16 @@ particles.h
|
|||
init.c
|
||||
|
||||
../sky.c
|
||||
../fade.cpp
|
||||
../fade.c
|
||||
../sprite.cpp
|
||||
../titles.cpp
|
||||
../text.cpp
|
||||
../sentences.cpp
|
||||
../titles.c
|
||||
../text.c
|
||||
../sentences.c
|
||||
|
||||
../../gs-entbase/client.src
|
||||
|
||||
../sound.c
|
||||
../text.c
|
||||
../prints.c
|
||||
../voice.c
|
||||
|
||||
../../shared/valve/animations.h
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
//#define GS_DEVELOPER
|
||||
#define GS_DEVELOPER
|
||||
|
||||
.float gflags;
|
||||
|
||||
|
@ -27,8 +27,8 @@ enumflags
|
|||
GF_SEMI_TOGGLED
|
||||
};
|
||||
|
||||
void Effect_CreateSpark(vector pos, vector ang);
|
||||
void Effect_BreakModel(int count, vector mins, vector maxs,vector vel, float mat);
|
||||
void Effect_CreateSpark(vector, vector);
|
||||
void Effect_BreakModel(int, vector, vector, vector, float);
|
||||
|
||||
/* This is required because people who use Hammer do awful things
|
||||
to get their models to update. We get a multitude of juicy
|
||||
|
@ -49,7 +49,7 @@ string Util_FixModel(string mdl)
|
|||
newpath = sprintf("%s/%s", newpath, argv(i));
|
||||
}
|
||||
|
||||
// Kill the first /
|
||||
/* Kill the first / */
|
||||
newpath = substring(newpath, 1, strlen(newpath)-1);
|
||||
|
||||
/* Now we need to fix \/ because I hate people */
|
||||
|
@ -58,7 +58,7 @@ string Util_FixModel(string mdl)
|
|||
for (int i = 0; i < c; i++) {
|
||||
mdl = sprintf("%s/%s", mdl, argv(i));
|
||||
}
|
||||
// Kill the first / again
|
||||
/* Kill the first / again */
|
||||
mdl = substring(mdl, 1, strlen(mdl)-1);
|
||||
|
||||
return mdl;
|
||||
|
|
Loading…
Reference in a new issue