diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rwxr-xr-x | configure.ac | 2 | ||||
-rw-r--r-- | src/main.cpp | 5 |
3 files changed, 6 insertions, 2 deletions
@@ -7,6 +7,7 @@ - Added framerate limiter to config options - Added ability to auto attack - Added in-game help window +- Added new hair style (mohawk) - Upgraded to Guichan 0.4.0 - Dialogs are now modal when appropriate - Maximum item icon size changed to 32x32 diff --git a/configure.ac b/configure.ac index 9d2f64cf..cef1a5eb 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([The Mana World], [0.0.12], [umperio@users.sourceforge.net], [tmw]) +AC_INIT([The Mana World], [0.0.13], [umperio@users.sourceforge.net], [tmw]) AC_CONFIG_HEADERS([config.h:config.h.in]) AC_LANG_CPLUSPLUS diff --git a/src/main.cpp b/src/main.cpp index 9759d047..5b8f4244 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -84,7 +84,10 @@ ItemManager *itemDb; /**< Item database object */ */ Uint32 nextFrame(Uint32 interval, void *param) { - framesToDraw++; + if (framesToDraw < 10) + { + framesToDraw++; + } return interval; } |