Skip to content

Commit

Permalink
Fix some minor things found by running Sizer on PPSSPP
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Nov 8, 2017
1 parent 8fe1712 commit 62b24ed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Common/KeyMap.cpp
Expand Up @@ -395,7 +395,7 @@ void SetDefaultKeyMap(DefaultMaps dmap, bool replace) {
UpdateNativeMenuKeys();
}

const KeyMap_IntStrPair key_names[] = {
static const KeyMap_IntStrPair key_names[] = {
{NKCODE_A, "A"},
{NKCODE_B, "B"},
{NKCODE_C, "C"},
Expand Down Expand Up @@ -586,7 +586,7 @@ const KeyMap_IntStrPair key_names[] = {
{NKCODE_RIGHTBRACE, "}"},
};

const KeyMap_IntStrPair axis_names[] = {
static const KeyMap_IntStrPair axis_names[] = {
{JOYSTICK_AXIS_X, "X Axis"},
{JOYSTICK_AXIS_Y, "Y Axis"},
{JOYSTICK_AXIS_PRESSURE, "Pressure"},
Expand Down Expand Up @@ -874,7 +874,7 @@ void LoadFromIni(IniFile &file) {
IniFile::Section *controls = file.GetOrCreateSection("ControlMapping");
for (size_t i = 0; i < ARRAY_SIZE(psp_button_names); i++) {
std::string value;
controls->Get(psp_button_names[i].name.c_str(), &value, "");
controls->Get(psp_button_names[i].name, &value, "");

// Erase default mapping
g_controllerMap.erase(psp_button_names[i].key);
Expand Down Expand Up @@ -913,7 +913,7 @@ void SaveToIni(IniFile &file) {
value += ",";
}

controls->Set(psp_button_names[i].name.c_str(), value, "");
controls->Set(psp_button_names[i].name, value, "");
}
}

Expand Down
2 changes: 1 addition & 1 deletion Common/KeyMap.h
Expand Up @@ -86,7 +86,7 @@ namespace KeyMap {
// Key & Button names
struct KeyMap_IntStrPair {
int key;
std::string name;
const char *name;
};

// Use if you need to display the textual name
Expand Down
3 changes: 1 addition & 2 deletions Core/HLE/sceUsbCam.h
Expand Up @@ -46,8 +46,7 @@ typedef struct PspUsbCamSetupVideoParam {
int evlevel;
} PspUsbCamSetupVideoParam;


static unsigned char sceUsbCamDummyImage[] = {
static const unsigned char sceUsbCamDummyImage[] = {
0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60,
0x00, 0x60, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x68, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4D, 0x4D,
0x00, 0x2A, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x01, 0x1A, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01,
Expand Down

0 comments on commit 62b24ed

Please sign in to comment.