Rename misc.c to main.c

This commit is contained in:
Yamagi Burmeister 2012-04-19 13:14:03 +00:00
parent 8930dc512f
commit a7aa1e93c0
2 changed files with 5 additions and 4 deletions

View file

@ -308,7 +308,7 @@ CLIENT_OBJS_ := \
src/server/sv_world.o \
src/unix/glob.o \
src/unix/hunk.o \
src/unix/misc.o \
src/unix/main.o \
src/unix/network.o \
src/unix/signalhandler.o \
src/unix/system.o \
@ -354,7 +354,7 @@ SERVER_OBJS_ := \
src/server/sv_world.o \
src/unix/glob.o \
src/unix/hunk.o \
src/unix/misc.o \
src/unix/main.o \
src/unix/network.o \
src/unix/signalhandler.o \
src/unix/system.o
@ -385,7 +385,7 @@ OPENGL_OBJS_ = \
src/common/shared/shared.o \
src/unix/glob.o \
src/unix/hunk.o \
src/unix/misc.o \
src/unix/main.o \
src/unix/qgl.o
# ----------

View file

@ -19,7 +19,8 @@
*
* =======================================================================
*
* This file implements some misc stuff like the main loop
* This file is the starting point of the program and implements
* the main loop
*
* =======================================================================
*/