(runahead) Remove unused variable

This commit is contained in:
twinaphex 2018-03-29 18:05:35 +02:00
parent 425e1d9043
commit e85f11ea38

View File

@ -147,10 +147,9 @@ failed:
bool write_file_with_random_name(char **tempDllPath,
const char *retroarchTempPath, const void* data, ssize_t dataSize)
{
int i;
unsigned i;
char numberBuf[32];
bool okay = false;
const int maxAttempts = 30;
const char *prefix = "tmp";
time_t timeValue = time(NULL);
unsigned int numberValue = (unsigned int)timeValue;