Skip to content

Commit

Permalink
rebranding
Browse files Browse the repository at this point in the history
  • Loading branch information
tildearrow committed May 13, 2021
1 parent c5fa0a3 commit 76a345e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.0)
project(divorce)
project(furnace)

set(CMAKE_CXX_STANDARD 11)

Expand Down Expand Up @@ -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()
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 2 additions & 2 deletions src/engine/song.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 76a345e

Please sign in to comment.