mirror of
https://github.com/halpz/re3.git
synced 2025-05-13 05:36:39 +03:00
couple of fixes
This commit is contained in:
parent
29d7b983d7
commit
60045ec6cd
9 changed files with 22 additions and 24 deletions
|
@ -1824,7 +1824,7 @@ char *CPad::EditString(char *pStr, int32 nSize)
|
|||
}
|
||||
|
||||
// numbers
|
||||
for ( int32 i = 0; i < ('0' - '9' + 1); i++ )
|
||||
for ( int32 i = 0; i < ('9' - '0' + 1); i++ )
|
||||
{
|
||||
if ( GetPad(0)->GetCharJustDown(i + '0') && pos < nSize - 1 )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue