Skip to content

Commit

Permalink
Merge dev41
Browse files Browse the repository at this point in the history
  • Loading branch information
starg2 committed Apr 8, 2019
2 parents 593e8eb + 4741b51 commit f6976f6
Show file tree
Hide file tree
Showing 6 changed files with 181 additions and 184 deletions.
2 changes: 1 addition & 1 deletion interface/w32g_i.c
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ int32 SetValue(int32 value, int32 min, int32 max)
return v;
}

int w32gSecondTiMidity(int opt, int argc, char **argv);
int w32gSecondTiMidity(int opt, int argc, char **argv, int nfiles, char **files);
int w32gSecondTiMidityExit(void);
int SecondMode = 1;

Expand Down
1 change: 1 addition & 0 deletions interface/w32g_playlist.c
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,7 @@ static int w32g_shuffle_playlist_delete(int n)
for ( i = 0; i < playlist_shuffle.max; i++ ) {
if ( playlist_shuffle.list[i] == n ) {
delete_flag = 1;
i++;
break;
}
}
Expand Down
4 changes: 2 additions & 2 deletions interface/w32g_ut2.c
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ int PauseOldTiMidity(void)
// opt==5 : 2重に起動する
// 自分が終了するべきときは FALSE を返す
// 自分が終了するべきでないときは TRUE を返す
int w32gSecondTiMidity(int opt, int argc, char **argv)
int w32gSecondTiMidity(int opt, int argc, char **argv, int nfiles, char **files)
{
int i;
switch (opt) {
Expand All @@ -961,7 +961,7 @@ int w32gSecondTiMidity(int opt, int argc, char **argv)
return FALSE;
if (opt==0)
ClearPlaylistOldTiMidity();
SendFilesToOldTiMidity(argc > 0 ? argc-1 : 0, argv+1);
SendFilesToOldTiMidity(nfiles, files);
return FALSE;
} else {
if (TryUniqTiMidity(20)==TRUE) {
Expand Down
3 changes: 0 additions & 3 deletions timidity/controls.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,6 @@ ControlMode *ctl_list[]={
#ifdef IA_W32GUI
&w32gui_control_mode,
#endif /* IA_W32GUI */
#ifdef IA_W32G_SYN
&winsyn_control_mode,
#endif /* IA_W32GUI */
#if !defined(__MACOS__) && !defined(IA_W32GUI) && !defined(IA_W32G_SYN) && !defined(IA_WINSYN) && !(defined(__W32__) && defined(CFG_FOR_SF))
&dumb_control_mode,
#endif
Expand Down
2 changes: 0 additions & 2 deletions timidity/sndfontini.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,6 @@ void OverrideSFSettingLoad()
memcpy(sfini_path, fn, FILEPATH_MAX);

#include "loadsndfontini.h"

printf("\n**********************************\nsoundfont.ini load ... ok\n");
}

#endif
Expand Down
Loading

0 comments on commit f6976f6

Please sign in to comment.