Skip to content

Commit

Permalink
Merge a couple of fixes from AudioScout's PR #156
Browse files Browse the repository at this point in the history
  • Loading branch information
Deltafire committed Apr 14, 2018
1 parent a091e55 commit 792f703
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/milkyplay/MilkyPlayCommon.h
Expand Up @@ -89,7 +89,7 @@

#define MP_NUMEFFECTS 4

#if defined(WIN32) || defined(_WIN32_WCE) && !defined(__FORCE_SDL_AUDIO__)
#if (defined(WIN32) || defined(_WIN32_WCE)) && !defined(__FORCE_SDL_AUDIO__)
#define DRIVER_WIN32
#elif defined(__APPLE__) && !defined(__FORCE_SDL_AUDIO__)
#define DRIVER_OSX
Expand Down
2 changes: 1 addition & 1 deletion src/tracker/sdl/SDL_Main.cpp
Expand Up @@ -162,7 +162,7 @@ enum SDLUserEvents
SDLUserEventMidiKeyUp,
};

static SDLCALL Uint32 timerCallback(Uint32 interval, void* param)
static Uint32 SDLCALL timerCallback(Uint32 interval, void* param)
{
if (!myTrackerScreen || !myTracker || !ticking)
{
Expand Down

2 comments on commit 792f703

@AreaScout
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AudioScout is good :)

@Deltafire
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ooops.. Sorry!

Please sign in to comment.