mirror of https://github.com/axmolengine/axmol.git
fixed #1293:rename getFrames to getTotalFrames and return correct value
This commit is contained in:
parent
eab44f3d6e
commit
b3fb5e6d4c
|
@ -122,7 +122,7 @@ public:
|
||||||
inline bool isPaused(void) { return m_bPaused; }
|
inline bool isPaused(void) { return m_bPaused; }
|
||||||
|
|
||||||
/** How many frames were called since the director started */
|
/** How many frames were called since the director started */
|
||||||
inline unsigned int getFrames(void) { return m_uFrames; }
|
inline unsigned int getTotalFrames(void) { return m_uTotalFrames; }
|
||||||
|
|
||||||
/** Sets an OpenGL projection
|
/** Sets an OpenGL projection
|
||||||
@since v0.8.2
|
@since v0.8.2
|
||||||
|
|
Loading…
Reference in New Issue