mirror of https://github.com/snes9xgit/snes9x.git
Qt: Output S9xMessage to console.
This commit is contained in:
parent
cc49a06c77
commit
5d9f5b061b
|
@ -532,7 +532,10 @@ void Snes9xController::clearSoundBuffer()
|
||||||
|
|
||||||
void S9xMessage(int message_class, int type, const char *message)
|
void S9xMessage(int message_class, int type, const char *message)
|
||||||
{
|
{
|
||||||
S9xSetInfoString(message);
|
if (type == S9X_ROM_INFO)
|
||||||
|
S9xSetInfoString(Memory.GetMultilineROMInfo().c_str());
|
||||||
|
|
||||||
|
printf("%s\n", message);
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *S9xStringInput(const char *prompt)
|
const char *S9xStringInput(const char *prompt)
|
||||||
|
|
Loading…
Reference in New Issue