mirror of
https://github.com/holub/mame
synced 2025-05-22 21:58:57 +03:00
Silenced GD-Rom file creation.
This commit is contained in:
parent
7f3993fc41
commit
81e9491b72
@ -339,6 +339,7 @@ void naomi_game_decrypt(running_machine* machine, UINT64 key, UINT8* region, int
|
||||
|
||||
des_generate_subkeys (rev64(key), des_subkeys);
|
||||
|
||||
#ifdef MAME_DEBUG
|
||||
/* save the original file */
|
||||
{
|
||||
FILE *fp;
|
||||
@ -351,6 +352,7 @@ void naomi_game_decrypt(running_machine* machine, UINT64 key, UINT8* region, int
|
||||
fclose(fp);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
for(i=0;i<length;i+=8)
|
||||
{
|
||||
@ -362,6 +364,7 @@ void naomi_game_decrypt(running_machine* machine, UINT64 key, UINT8* region, int
|
||||
write_from_qword(region+i, ret);
|
||||
}
|
||||
|
||||
#ifdef MAME_DEBUG
|
||||
/* save the decrypted file */
|
||||
{
|
||||
FILE *fp;
|
||||
@ -374,6 +377,6 @@ void naomi_game_decrypt(running_machine* machine, UINT64 key, UINT8* region, int
|
||||
fclose(fp);
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user