lsteamclient: Fix the order of arguments in steamclient_isteaminput_getglyph_png().
This commit is contained in:
parent
db61ec1f1e
commit
7523181830
2 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ static std::unordered_map<int /*EInputActionOrigin*/, char *> cached_input_glyph
|
|||
static std::unordered_map<int /*flags*/, std::unordered_map<int /*EInputActionOrigin*/, char *> > cached_input_glyphs_svg;
|
||||
static std::unordered_map<int /*flags*/, std::unordered_map<int /*EInputActionOrigin*/, char *> > cached_input_glyphs_png[ESteamInputGlyphSize_count];
|
||||
|
||||
const char *steamclient_isteaminput_getglyph_png(int origin, int flags, int size, const char *lin_path)
|
||||
const char *steamclient_isteaminput_getglyph_png(int origin, int size, int flags, const char *lin_path)
|
||||
{
|
||||
if(!lin_path)
|
||||
return NULL;
|
||||
|
|
|
@ -52,7 +52,7 @@ void steamclient_free_stringlist(const char **out);
|
|||
const char *steamclient_isteamcontroller_getglyph(int origin, const char *lin_path);
|
||||
const char *steamclient_isteaminput_getglyph(int origin, const char *lin_path);
|
||||
const char *steamclient_isteaminput_getglyph_xbox(int origin, const char *lin_path);
|
||||
const char *steamclient_isteaminput_getglyph_png(int origin, int flags, int size, const char *lin_path);
|
||||
const char *steamclient_isteaminput_getglyph_png(int origin, int size, int flags, const char *lin_path);
|
||||
const char *steamclient_isteaminput_getglyph_svg(int origin, int flags, const char *lin_path);
|
||||
uint32 manual_convert_nNativeKeyCode(uint32 win_vk);
|
||||
void *create_LinuxISteamMatchmakingServerListResponse(void *win, const char *version);
|
||||
|
|
Loading…
Reference in a new issue