diff options
author | Zack Middleton <zturtleman@gmail.com> | 2011-09-09 21:48:07 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-10 23:37:50 +0000 |
commit | fb8f6a939a43e53bbfc7d7dc05f2c167c697bd87 (patch) | |
tree | d96f67a8c6425d8696893acef659e548faa8f03e /src | |
parent | 77077a084e859ffd4fa4bb60511d877613e8a454 (diff) |
Fixed some function name comments in cl_cin.c
Diffstat (limited to 'src')
-rw-r--r-- | src/client/cl_cin.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/client/cl_cin.c b/src/client/cl_cin.c index 3e0f55c7..30633c03 100644 --- a/src/client/cl_cin.c +++ b/src/client/cl_cin.c @@ -1294,7 +1294,7 @@ static void RoQShutdown( void ) { /* ================== -SCR_StopCinematic +CIN_StopCinematic ================== */ e_status CIN_StopCinematic(int handle) { @@ -1321,7 +1321,7 @@ e_status CIN_StopCinematic(int handle) { /* ================== -SCR_RunCinematic +CIN_RunCinematic Fetch and decompress the pending frame ================== @@ -1399,8 +1399,7 @@ e_status CIN_RunCinematic (int handle) /* ================== -CL_PlayCinematic - +CIN_PlayCinematic ================== */ int CIN_PlayCinematic( const char *arg, int x, int y, int w, int h, int systemBits ) { @@ -1422,7 +1421,7 @@ int CIN_PlayCinematic( const char *arg, int x, int y, int w, int h, int systemBi } } - Com_DPrintf("SCR_PlayCinematic( %s )\n", arg); + Com_DPrintf("CIN_PlayCinematic( %s )\n", arg); Com_Memset(&cin, 0, sizeof(cinematics_t) ); currentHandle = CIN_HandleForVideo(); @@ -1565,8 +1564,7 @@ void CIN_ResampleCinematic(int handle, int *buf2) { /* ================== -SCR_DrawCinematic - +CIN_DrawCinematic ================== */ void CIN_DrawCinematic (int handle) { |