mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Warning fixes
This commit is contained in:
parent
60b9f4f003
commit
171e202019
4 changed files with 6 additions and 6 deletions
|
@ -192,7 +192,7 @@ int _MpegReadbuffer(void *opaque, uint8_t *buf, int buf_size)
|
|||
void ffmpeg_logger(void *, int, const char *format, va_list va_args) {
|
||||
char tmp[1024];
|
||||
vsprintf(tmp, format, va_args);
|
||||
INFO_LOG(HLE, tmp);
|
||||
INFO_LOG(HLE, "%s", tmp);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
@ -99,14 +99,14 @@ void ControlMapper::Refresh() {
|
|||
|
||||
Choice *c = row->Add(new Choice(deviceName + "." + keyName, new LinearLayoutParams(1.0f)));
|
||||
char tagbuf[16];
|
||||
sprintf(tagbuf, "%i", i);
|
||||
sprintf(tagbuf, "%i", (int)i);
|
||||
c->SetTag(tagbuf);
|
||||
c->OnClick.Handle(this, &ControlMapper::OnReplace);
|
||||
|
||||
|
||||
Choice *d = row->Add(new Choice("X"));
|
||||
d->SetTag(tagbuf);
|
||||
d->OnClick.Handle(this, &ControlMapper::OnDelete);
|
||||
|
||||
|
||||
row->Add(new Choice("+"))->OnClick.Handle(this, &ControlMapper::OnAdd);
|
||||
}
|
||||
|
||||
|
|
2
lang
2
lang
|
@ -1 +1 @@
|
|||
Subproject commit 595a63fccceb648c76785c6913d5e88d77daa5d6
|
||||
Subproject commit 642cf6c141b49c7b453ddaa82f4e0b08a47a3101
|
2
native
2
native
|
@ -1 +1 @@
|
|||
Subproject commit 2ef42213955f54e61b8599fceed7eacf0d698a31
|
||||
Subproject commit 91efd71ff9bd3b8ce879966c3f423241f4d94fd2
|
Loading…
Add table
Reference in a new issue