aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/UMain.pas
diff options
context:
space:
mode:
authorb_krueger <b_krueger@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-07-18 10:52:29 +0000
committerb_krueger <b_krueger@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-07-18 10:52:29 +0000
commit92336ab5d99d185d9316330d39a3bb8f881eb9f3 (patch)
tree39249f0f2d571d5913e78bf1c0d846ba074da8d0 /src/base/UMain.pas
parent9ceadd2532207fcb512fcfecbd2895055422ad99 (diff)
downloadusdx-92336ab5d99d185d9316330d39a3bb8f881eb9f3.tar.gz
usdx-92336ab5d99d185d9316330d39a3bb8f881eb9f3.tar.xz
usdx-92336ab5d99d185d9316330d39a3bb8f881eb9f3.zip
- Commented delay of error.log in mainloop (error-log is no longer generated without any error)
- If an old 1.01 Ultrastar.db exists, it will no longer deleted on startup, it will be converted into the new 1.1 schema --> added new column in us_songs: rating. This will allow to rate songs in upcoming versions git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1847 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/base/UMain.pas')
-rw-r--r--src/base/UMain.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/UMain.pas b/src/base/UMain.pas
index 275510fc..187318a6 100644
--- a/src/base/UMain.pas
+++ b/src/base/UMain.pas
@@ -359,11 +359,11 @@ begin
CountMidTime;
Delay := Floor(1000 / MAX_FPS - 1000 * TimeMid);
- Log.LogError ('MainLoop', 'Delay: ' + intToStr(Delay));
+ //Log.LogError ('MainLoop', 'Delay: ' + intToStr(Delay));
if Delay >= 1 then
SDL_Delay(Delay); // dynamic, maximum is 100 fps
- Log.LogError ('MainLoop', 'Delay: ok ' + intToStr(Delay));
+ //Log.LogError ('MainLoop', 'Delay: ok ' + intToStr(Delay));
CountSkipTime;