Skip to content

Commit

Permalink
fix to bug where the savegame filename was hardcoded to TETRIS.sav. U…
Browse files Browse the repository at this point in the history
…ser input will now be used
  • Loading branch information
abrugsch committed Jul 13, 2017
1 parent 777008c commit ce0fcbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gbcartslurp.c
Expand Up @@ -465,7 +465,7 @@ int main(int argc, char* argv[])
char saveFile[100];
puts(" Save file:");
fgets(saveFile,100,stdin);
WriteRam("TETRIS.sav");
WriteRam(saveFile);

break;
}
Expand Down

0 comments on commit ce0fcbe

Please sign in to comment.