Trim trailing spaces.

This commit is contained in:
Alcaro 2014-05-28 22:44:52 +02:00
parent 2a65558d51
commit 3ba8c3bb2d
2 changed files with 11 additions and 12 deletions

View File

@ -320,7 +320,7 @@ void retro_cheat_set(unsigned index, bool enabled, const char *code)
S9xApplyCheats();
}
#define MAX_MAPS 256
#define MAX_MAPS 32
static struct retro_memory_descriptor memorydesc[MAX_MAPS];
static unsigned memorydesc_c;
void S9xAppendMapping(struct retro_memory_descriptor * desc)

View File

@ -642,12 +642,11 @@ enum retro_mod
// Even if special device types are set in the libretro core, libretro should only poll input based on the base input device types.
#define RETRO_ENVIRONMENT_SET_MEMORY_MAPS (36 | RETRO_ENVIRONMENT_EXPERIMENTAL)
// const struct retro_memory_map * --
// This environment call lets a libretro core tell the frontend about the memory maps
// emulated by this core. This can be used to implement, for example, cheats.
// This environment call lets a libretro core tell the frontend about the memory maps this
// core emulates. This can be used to implement, for example, cheats in a core-agnostic way.
//
// Should only be used by emulators; it doesn't make much sense for anything else.
//
// It is highly recommended to expose all relevant pointers through retro_get_memory_* as well.
// It is recommended to expose all relevant pointers through retro_get_memory_* as well.
//
// Can be called from retro_init and retro_load_game.
//