summaryrefslogtreecommitdiffhomepage
path: root/Stars45/ScrollWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/ScrollWindow.cpp')
-rw-r--r--Stars45/ScrollWindow.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/Stars45/ScrollWindow.cpp b/Stars45/ScrollWindow.cpp
index 8497dd6..0490da6 100644
--- a/Stars45/ScrollWindow.cpp
+++ b/Stars45/ScrollWindow.cpp
@@ -20,9 +20,8 @@
#include "Font.h"
#include "Keyboard.h"
#include "Mouse.h"
-
-
-DWORD GetRealTime();
+#include "Game.h"
+#include "Clock.h"
// +--------------------------------------------------------------------+
@@ -553,9 +552,10 @@ int ScrollWindow::OnMouseWheel(int wheel)
if (GetLineCount() > 0) {
static double scroll_time = 0;
+ Clock* clock = Game::GetInstance()->GetClock();
- if (GetRealTime() - scroll_time > 0.5) {
- scroll_time = GetRealTime();
+ if (clock->RealTime() - scroll_time > 0.5) {
+ scroll_time = clock->RealTime();
Button::PlaySound(Button::SND_LIST_SCROLL);
}
}