mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix some formatting warnings.
This commit is contained in:
parent
8af036eb1f
commit
a69ddf840c
2 changed files with 3 additions and 3 deletions
|
@ -532,7 +532,7 @@ namespace MIPSDis
|
|||
int vs = _VS;
|
||||
int imm = (int)((op >> 16) & 0xFF);
|
||||
const char *name = MIPSGetName(op);
|
||||
sprintf(out, "%s%s\t%s, %s", name, VSuff(op), VN(vd, sz), VN(vs, sz), imm);
|
||||
sprintf(out, "%s%s\t%s, %s, %d", name, VSuff(op), VN(vd, sz), VN(vs, sz), imm);
|
||||
}
|
||||
|
||||
void Dis_Vf2h(MIPSOpcode op, char *out)
|
||||
|
|
|
@ -189,9 +189,9 @@ void GameButton::Draw(UIContext &dc) {
|
|||
|
||||
char discNumInfo[8];
|
||||
if (ginfo->disc_total > 1)
|
||||
sprintf(discNumInfo, "-DISC%d",ginfo->disc_number);
|
||||
sprintf(discNumInfo, "-DISC%d", ginfo->disc_number);
|
||||
else
|
||||
sprintf(discNumInfo, "");
|
||||
strcpy(discNumInfo, "");
|
||||
|
||||
dc.Draw()->Flush();
|
||||
dc.RebindTexture();
|
||||
|
|
Loading…
Add table
Reference in a new issue