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

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.0) cmake_minimum_required(VERSION 3.0)
project(divorce) project(furnace)
set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD 11)
@ -43,15 +43,15 @@ src/engine/platform/dummy.cpp)
#imgui/backends/imgui_impl_sdl.cpp #imgui/backends/imgui_impl_sdl.cpp
#src/gui/main.cpp) #src/gui/main.cpp)
add_executable(divorce ${ENGINE_SOURCES} ${AUDIO_SOURCES} add_executable(furnace ${ENGINE_SOURCES} ${AUDIO_SOURCES}
src/main.cpp) src/main.cpp)
target_link_libraries(divorce ${HAVE_SDL2} z) target_link_libraries(furnace ${HAVE_SDL2} z)
if (HAVE_JACK) if (HAVE_JACK)
target_link_libraries(divorce ${HAVE_JACK}) target_link_libraries(furnace ${HAVE_JACK})
endif() endif()
if (WIN32) if (WIN32)
target_link_libraries(divorce SDL2main) target_link_libraries(furnace SDL2main)
endif() endif()

View File

@ -1,5 +1,5 @@
# divorce # Furnace
that does it. 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.

View File

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

View File

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