rebranding

This commit is contained in:
tildearrow 2021-05-13 03:22:57 -05:00
parent c5fa0a3d6d
commit 76a345ef25
4 changed files with 10 additions and 10 deletions

View file

@ -25,8 +25,8 @@ enum DivSystem {
struct DivSong {
// version number used for saving the song.
// divorce will save using the latest possible version,
// but eventually I will and 0x80 to this value to indicate a divorce module
// Furnace will save using the latest possible version,
// but eventually I will and 0x80 to this value to indicate a Furnace module
// known version numbers:
// - 24: v0.12/0.13/1.0
// - current format version

View file

@ -14,7 +14,7 @@ int main(int argc, char** argv) {
logI("usage: %s file\n",argv[0]);
return 1;
}
logI("divorce " DIV_VERSION "\n");
logI("Furnace version " DIV_VERSION ".\n");
logI("loading module...\n");
FILE* f=fopen(argv[1],"rb");
if (f==NULL) {