Skip to content

Commit

Permalink
uh oh, some bugs have crept in
Browse files Browse the repository at this point in the history
  • Loading branch information
eightnoteight committed Jun 22, 2014
1 parent 6a1e6df commit 20eaec5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions 2048.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,13 +161,14 @@ boool gameinit()
}
}
}
void Winner()
{

void Winner(){
clear();
mvprintw(row/2,(col-10)/2, "WINNER! :)");
}
void Loser()
{

void Loser(){
clear();
mvprintw(row/2,(col-8)/2, "LOSER :(");
}
int main(int argc, char const *argv[])
{
Expand Down

0 comments on commit 20eaec5

Please sign in to comment.