mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 13:47:58 +03:00
Don't set the frame number if the renderer function doesn't exist
This commit is contained in:
parent
d3fb1331f8
commit
20c1fab815
1 changed files with 4 additions and 0 deletions
|
@ -2590,6 +2590,10 @@ void CL_CheckUserinfo( void ) {
|
|||
}
|
||||
|
||||
void CL_SetFrameNumber(int frameNumber) {
|
||||
if (!re.SetFrameNumber) {
|
||||
return;
|
||||
}
|
||||
|
||||
re.SetFrameNumber(frameNumber);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue