mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 04:55:13 +00:00
GUI: update credits
This commit is contained in:
parent
285dae9239
commit
1ac507a39f
2 changed files with 3 additions and 2 deletions
|
@ -93,6 +93,7 @@ const char* aboutLine[]={
|
|||
"Raijin",
|
||||
"SnugglyBun",
|
||||
"SuperJet Spade",
|
||||
"SwapXFO",
|
||||
"TakuikaNinja",
|
||||
"The Blender Fiddler",
|
||||
"TheDuccinator",
|
||||
|
|
|
@ -43,10 +43,10 @@ void FurnaceGUI::drawSongInfo(bool asChild) {
|
|||
if (ImGui::InputText("##Name",&e->song.name,ImGuiInputTextFlags_UndoRedo)) { MARK_MODIFIED
|
||||
updateWindowTitle();
|
||||
}
|
||||
if (e->song.insLen==2) {
|
||||
if (e->song.insLen==1) {
|
||||
unsigned int checker=0x11111111;
|
||||
unsigned int checker1=0;
|
||||
DivInstrument* ins=e->getIns(1);
|
||||
DivInstrument* ins=e->getIns(0);
|
||||
if (ins->name.size()==15 && e->curSubSong->ordersLen==8) {
|
||||
for (int i=0; i<15; i++) {
|
||||
checker^=ins->name[i]<<i;
|
||||
|
|
Loading…
Reference in a new issue