#include "SDL_stdinc.h"#include "SDL_error.h"#include "begin_code.h"#include "close_code.h"Go to the source code of this file.
| #define FRAMES_TO_MSF | ( | f, | |||
| M, | |||||
| S, | |||||
| F | ) |
Value:
{ \
int value = f; \
*(F) = value%CD_FPS; \
value /= CD_FPS; \
*(S) = value%60; \
value /= 60; \
*(M) = value; \
}
1.5.8