Codechange: use std::string/std::vector over stredup/strecpy/CallocT/free

This commit is contained in:
Rubidium
2023-06-21 20:04:59 +02:00
committed by rubidium42
parent 700241410b
commit 794b642b9a
2 changed files with 22 additions and 27 deletions

View File

@@ -14,8 +14,8 @@
class MusicDriver_ExtMidi : public MusicDriver {
private:
char **params;
char song[MAX_PATH];
std::vector<std::string> command_tokens;
std::string song;
pid_t pid;
void DoPlay();