Skip to content

Commit

Permalink
restore changes made by the broken commit
Browse files Browse the repository at this point in the history
  • Loading branch information
GrayHatter committed May 18, 2015
1 parent a558cc0 commit ffc5220
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
15 changes: 15 additions & 0 deletions windows/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@

#include "audio.c"

static TRACKMOUSEEVENT tme = {sizeof(TRACKMOUSEEVENT), TME_LEAVE, 0, 0};
static _Bool mouse_tracked = 0;
_Bool draw = 0;
float scale = 1.0;
_Bool connected = 0;
_Bool havefocus;


BLENDFUNCTION blend_function = {
.BlendOp = AC_SRC_OVER,
.BlendFlags = 0,
.SourceConstantAlpha = 0xFF,
.AlphaFormat = AC_SRC_ALPHA
};

/** Select the true main.c for legacy XP support.
* else default to xlib
**/
Expand Down
7 changes: 0 additions & 7 deletions windows/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,3 @@ enum
TRAY_STATUS_AWAY,
TRAY_STATUS_BUSY,
};

BLENDFUNCTION blend_function = {
.BlendOp = AC_SRC_OVER,
.BlendFlags = 0,
.SourceConstantAlpha = 0xFF,
.AlphaFormat = AC_SRC_ALPHA
};

0 comments on commit ffc5220

Please sign in to comment.