1
0
mirror of synced 2025-02-21 04:26:35 +01:00

Added some new logging values for MAME

This commit is contained in:
Aaron M 2020-08-02 16:31:09 +12:00
parent 0fcfe2af09
commit af0c4f4d25
2 changed files with 8 additions and 1 deletions

View File

@ -27,7 +27,6 @@ along with FFB Arcade Plugin.If not, see < https://www.gnu.org/licenses/>.
#include <d3d11.h>
#include <sapi.h>
#include <atlcomcli.h>
#include "Config/PersistentValues.h"
// include all game header files here.

View File

@ -2406,6 +2406,14 @@ void MAMESupermodel::FFBLoop(EffectConstants* constants, Helpers* helpers, Effec
RunningFFB = "NamcoFFBActive";
}
char romnametext[256];
sprintf(romnametext, "romname = %s", romname);
helpers->log(romnametext);
char RunningFFBtext[256];
sprintf(RunningFFBtext, "RunningFFB = %s", RunningFFB);
helpers->log(RunningFFBtext);
if ((RunningFFB != NULL) && (RunningFFB[0] != '\0'))
{
RomGameName = true;