Include correct headers
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3688
This commit is contained in:
parent
63bcf1d2ed
commit
38a357021c
1 changed files with 5 additions and 2 deletions
|
@ -19,7 +19,9 @@
|
|||
#include <assert.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <timer.h>
|
||||
#include <string>
|
||||
#include <algorithm>
|
||||
|
||||
#include "SDL.h"
|
||||
|
||||
#include "dosbox.h"
|
||||
|
@ -29,6 +31,7 @@
|
|||
#include "mapper.h"
|
||||
#include "pic.h"
|
||||
#include "hardware.h"
|
||||
#include "timer.h"
|
||||
|
||||
#define SYSEX_SIZE 1024
|
||||
#define RAWBUF 1024
|
||||
|
@ -200,7 +203,7 @@ public:
|
|||
fullconf.erase(fullconf.find("delaysysex"));
|
||||
LOG_MSG("MIDI:Using delayed SysEx processing");
|
||||
}
|
||||
remove(fullconf.begin(), fullconf.end(), ' ');
|
||||
std::remove(fullconf.begin(), fullconf.end(), ' ');
|
||||
const char * conf = fullconf.c_str();
|
||||
midi.status=0x00;
|
||||
midi.cmd_pos=0;
|
||||
|
|
Loading…
Add table
Reference in a new issue