Windows MIDI out device now selectable.
This commit is contained in:
parent
8b572111da
commit
25286c8f0b
6 changed files with 83 additions and 11 deletions
5
src/pc.c
5
src/pc.c
|
|
@ -201,6 +201,7 @@ void initpc()
|
|||
keyboard_init();
|
||||
mouse_init();
|
||||
joystick_init();
|
||||
midi_init();
|
||||
|
||||
loadconfig(NULL);
|
||||
pclog("Config loaded\n");
|
||||
|
|
@ -278,6 +279,9 @@ void resetpchard()
|
|||
device_close_all();
|
||||
device_init();
|
||||
|
||||
midi_close();
|
||||
midi_init();
|
||||
|
||||
timer_reset();
|
||||
sound_reset();
|
||||
mem_resize();
|
||||
|
|
@ -463,6 +467,7 @@ void closepc()
|
|||
dumpregs();
|
||||
closevideo();
|
||||
device_close_all();
|
||||
midi_close();
|
||||
}
|
||||
|
||||
/*int main()
|
||||
|
|
|
|||
Loading…
Reference in a new issue