diff options
Diffstat (limited to 'win32/oscilloview.c')
-rw-r--r-- | win32/oscilloview.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/oscilloview.c b/win32/oscilloview.c index 12851f4..3414cd4 100644 --- a/win32/oscilloview.c +++ b/win32/oscilloview.c @@ -42,7 +42,7 @@ static void CALLBACK mmtimer_cb(UINT timerid, UINT msg, } static bool on_create(HWND hwnd, const CREATESTRUCT *cs) { - g.whitepen = CreatePen(PS_SOLID, 2, RGB(255, 255, 255)); + g.whitepen = CreatePen(PS_SOLID, 1, RGB(255, 255, 255)); ShowWindow(hwnd, SW_SHOW); //SetTimer(hwnd, TIMER_UPDATE, 16, 0); g.mmtimer = timeSetEvent(16, 16, mmtimer_cb, 0, TIME_PERIODIC); |