Skip to content

Commit

Permalink
Fix song options and advanced options on mac and linux.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheROPFather authored May 25, 2018
1 parent cde27ce commit 7253309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/RageFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ class LunaRageFile: public Luna<RageFile>
static int Flush(T* p, lua_State* L)
{
p->Flush();
COMMON_RETURN_SELF;
return 0;
}

static int Read( T* p, lua_State *L )
Expand Down Expand Up @@ -435,7 +435,7 @@ class LunaRageFile: public Luna<RageFile>
static int ClearError( T* p, lua_State *L )
{
p->ClearError();
return 1;
return 0;
}

static int AtEOF( T* p, lua_State *L )
Expand Down

0 comments on commit 7253309

Please sign in to comment.