diff --git a/stepmania/TODO.chris b/stepmania/TODO.chris index 2ceeeb8ea3..22c3679ff2 100644 --- a/stepmania/TODO.chris +++ b/stepmania/TODO.chris @@ -2,6 +2,17 @@ Fix ///////////////////////// +fix DWI writing + +fix weird colors in recording + + +I noticed 2 things with Challenge Mode, one new to this release candidate, and one that I've noticed since I've started using SM in Beta 5. + +1) The timer at the end of the song jumps about 1:30 for a brief period of time. Perhaps it's adding the length of the next song. Once the next song starts however, it goes back the 1:30 or so back to what it was supposed to be. This is a new bug as far as I know. + +2) On Kidou II, the final song, Kakumei is on Reverse/Dark and stuff, but the green heavy logo doesn't move to the top of the screen like all the other reverse songs do. And especially when it's on dark, the bottom of the screen is partially blocked by this Heavy logo. I know if I pick Reverse in any other mode, the Heavy logo will move up below the health meter, but it doesn't for Challenge Mode, or at least this course anyway. This bug has been present since Beta 5. + crowd cheer on AA or greater - ez2dancer missing graphic diff --git a/stepmania/src/NotesWriterDWI.cpp b/stepmania/src/NotesWriterDWI.cpp index c635d55ae4..70987b8182 100644 --- a/stepmania/src/NotesWriterDWI.cpp +++ b/stepmania/src/NotesWriterDWI.cpp @@ -70,7 +70,7 @@ CString NotesWriterDWI::NotesToDWIString( char cNoteCol1, char cNoteCol2, char c CString NotesWriterDWI::NotesToDWIString( char cNoteCol1, char cNoteCol2, char cNoteCol3, char cNoteCol4 ) { - return NotesToDWIString( '0', cNoteCol1, cNoteCol2, cNoteCol3, cNoteCol4, '0' ); + return NotesToDWIString( cNoteCol1, '0', cNoteCol2, cNoteCol3, '0', cNoteCol4 ); } void NotesWriterDWI::WriteDWINotesField( FILE* fp, const Notes &out, int start )