From 8df9b2ed108dc3d741745986121a10f7dfb6a440 Mon Sep 17 00:00:00 2001 From: LibretroAdmin Date: Mon, 5 Sep 2022 01:17:09 +0200 Subject: [PATCH] Remove FCEUI_SetSnapName() --- src/driver.h | 3 --- src/fceu.c | 5 ----- src/fceu.h | 2 -- 3 files changed, 10 deletions(-) diff --git a/src/driver.h b/src/driver.h index 629725b..2b17d6e 100644 --- a/src/driver.h +++ b/src/driver.h @@ -82,9 +82,6 @@ void FCEUI_DisableFourScore(int s); /* New interface functions */ -/* 0 to order screen snapshots numerically(0.png), 1 to order them file base-numerically(smb3-0.png). */ -void FCEUI_SetSnapName(int a); - /* 0 to keep 8-sprites limitation, 1 to remove it */ void FCEUI_DisableSpriteLimitation(int a); diff --git a/src/fceu.c b/src/fceu.c index 9d3ec18..7ff77fd 100644 --- a/src/fceu.c +++ b/src/fceu.c @@ -522,11 +522,6 @@ void FCEUI_SetGameGenie(int a) FSettings.GameGenie = a ? 1 : 0; } -void FCEUI_SetSnapName(int a) -{ - FSettings.SnapName = a; -} - int32 FCEUI_GetDesiredFPS(void) { if (PAL || dendy) diff --git a/src/fceu.h b/src/fceu.h index 7f67715..7588e77 100644 --- a/src/fceu.h +++ b/src/fceu.h @@ -69,7 +69,6 @@ extern void (*GameStateRestore)(int version); #include "git.h" extern FCEUGI *GameInfo; -extern int GameAttributes; extern uint8 PAL; @@ -93,7 +92,6 @@ typedef struct { */ int UsrFirstSLine[2]; int UsrLastSLine[2]; - int SnapName; uint32 SndRate; int soundq; int lowpass;