forked from len0rd/rockbox
fixed win32 build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5919 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b021f78eca
commit
b90594c36b
1 changed files with 2 additions and 1 deletions
|
@ -20,6 +20,7 @@
|
|||
#include <stdio.h>
|
||||
#include <stddef.h>
|
||||
#include "config.h"
|
||||
#include "limits.h"
|
||||
#include "kernel.h"
|
||||
#include "thread.h"
|
||||
#include "settings.h"
|
||||
|
@ -1334,7 +1335,7 @@ bool set_int(const char* string,
|
|||
bool done = false;
|
||||
int button;
|
||||
int org_value=*variable;
|
||||
int last_value = __INT_MAX__; /* out of range init */
|
||||
int last_value = INT_MAX; /* out of range init */
|
||||
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
if(global_settings.statusbar)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue