mirror of
https://github.com/libretro/RetroArch
synced 2024-12-29 12:31:05 +00:00
74c8506391
Also fix white spaces in led drivers, make led drivers use standard driver format. Begin work on translation driver. Add salamander files to gitignore.
23 lines
431 B
C
23 lines
431 B
C
#include "../translation_driver.h"
|
|
|
|
static void* translation_null_init(const struct translation_driver_info *params)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static void translation_null_free(void* data)
|
|
{
|
|
}
|
|
|
|
static char* translation_null_translate_text(const char* game_text)
|
|
{
|
|
return "";
|
|
}
|
|
|
|
const translation_driver_t translation_null = {
|
|
translation_null_init,
|
|
translation_null_free,
|
|
translation_null_translate_text,
|
|
NULL,
|
|
"null"
|
|
}; |