From 76a345ef25dca4395632e01e14588c202dbd61f4 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Thu, 13 May 2021 03:22:57 -0500 Subject: [PATCH] rebranding --- CMakeLists.txt | 10 +++++----- README.md | 4 ++-- src/engine/song.h | 4 ++-- src/main.cpp | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9eb20c16..cf6125ba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.0) -project(divorce) +project(furnace) set(CMAKE_CXX_STANDARD 11) @@ -43,15 +43,15 @@ src/engine/platform/dummy.cpp) #imgui/backends/imgui_impl_sdl.cpp #src/gui/main.cpp) -add_executable(divorce ${ENGINE_SOURCES} ${AUDIO_SOURCES} +add_executable(furnace ${ENGINE_SOURCES} ${AUDIO_SOURCES} src/main.cpp) -target_link_libraries(divorce ${HAVE_SDL2} z) +target_link_libraries(furnace ${HAVE_SDL2} z) if (HAVE_JACK) - target_link_libraries(divorce ${HAVE_JACK}) + target_link_libraries(furnace ${HAVE_JACK}) endif() if (WIN32) - target_link_libraries(divorce SDL2main) + target_link_libraries(furnace SDL2main) endif() diff --git a/README.md b/README.md index dc2420d2..b5a710d2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# divorce +# Furnace that does it. -this is the result of a horrible decision to make it commercial... +thanks for nuking your user base. worst way to break our hearts. diff --git a/src/engine/song.h b/src/engine/song.h index 15a08d5d..a45f700f 100644 --- a/src/engine/song.h +++ b/src/engine/song.h @@ -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 diff --git a/src/main.cpp b/src/main.cpp index 152b8932..52f7e28f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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) {