mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-03-03 15:31:11 +00:00
Fix some printf warnings.
git-svn-id: https://svn.eduke32.com/eduke32@6872 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
b3bd2e686c
commit
58f5b34143
2 changed files with 3 additions and 3 deletions
|
@ -322,7 +322,7 @@ static void reportandexit(const char *errormessage)
|
|||
int32_t j = 0;
|
||||
for (native_t i = 0; i < cacnum; i++)
|
||||
{
|
||||
initprintf("%zu- ", i);
|
||||
buildprint(i, "- ");
|
||||
|
||||
if (cac[i].hand)
|
||||
initprintf("ptr: 0x%" PRIxPTR ", ", *cac[i].hand);
|
||||
|
|
|
@ -2379,11 +2379,11 @@ static void Menu_PreDraw(MenuID_t cm, MenuEntry_t *entry, const vec2_t origin)
|
|||
|
||||
if (g_oldSaveCnt)
|
||||
{
|
||||
Bsprintf(tempbuf, "Delete %zu obsolete saves?\nThis action cannot be undone."
|
||||
Bsprintf(tempbuf, "Delete %" PRIu64 " obsolete saves?\nThis action cannot be undone."
|
||||
#ifndef EDUKE32_ANDROID_MENU
|
||||
"\n(Y/N)"
|
||||
#endif
|
||||
, g_oldSaveCnt);
|
||||
, (uint64_t)g_oldSaveCnt);
|
||||
}
|
||||
else
|
||||
Bsprintf(tempbuf, "No obsolete saves found!");
|
||||
|
|
Loading…
Reference in a new issue