Save mines to SM files

Ignore mines when saving DWI files (feels more appropriate than saving them as steps)
This commit is contained in:
Chris Gomez
2003-09-01 02:33:42 +00:00
parent 5b17149520
commit 0aebf25ccb
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ CString NotesWriterDWI::NotesToDWIString( const TapNote cNoteCols[6] )
CString taps, holds, ret;
for( int col = 0; col < 6; ++col )
{
if( cNoteCols[col] == TAP_EMPTY )
if( cNoteCols[col] == TAP_EMPTY || cNoteCols[col] == TAP_MINEs )
continue;
if( cNoteCols[col] == TAP_HOLD_HEAD )