mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-13 21:51:09 +00:00
Fixed some function name comments in cl_cin.c
This commit is contained in:
parent
4632d85553
commit
237b09f4ab
1 changed files with 5 additions and 7 deletions
|
@ -1293,7 +1293,7 @@ static void RoQShutdown( void ) {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
==================
|
==================
|
||||||
SCR_StopCinematic
|
CIN_StopCinematic
|
||||||
==================
|
==================
|
||||||
*/
|
*/
|
||||||
e_status CIN_StopCinematic(int handle) {
|
e_status CIN_StopCinematic(int handle) {
|
||||||
|
@ -1320,7 +1320,7 @@ e_status CIN_StopCinematic(int handle) {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
==================
|
==================
|
||||||
SCR_RunCinematic
|
CIN_RunCinematic
|
||||||
|
|
||||||
Fetch and decompress the pending frame
|
Fetch and decompress the pending frame
|
||||||
==================
|
==================
|
||||||
|
@ -1398,8 +1398,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 ) {
|
int CIN_PlayCinematic( const char *arg, int x, int y, int w, int h, int systemBits ) {
|
||||||
|
@ -1421,7 +1420,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) );
|
Com_Memset(&cin, 0, sizeof(cinematics_t) );
|
||||||
currentHandle = CIN_HandleForVideo();
|
currentHandle = CIN_HandleForVideo();
|
||||||
|
@ -1564,8 +1563,7 @@ void CIN_ResampleCinematic(int handle, int *buf2) {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
==================
|
==================
|
||||||
SCR_DrawCinematic
|
CIN_DrawCinematic
|
||||||
|
|
||||||
==================
|
==================
|
||||||
*/
|
*/
|
||||||
void CIN_DrawCinematic (int handle) {
|
void CIN_DrawCinematic (int handle) {
|
||||||
|
|
Loading…
Reference in a new issue