浏览代码

close textbox when any key is pressed (NOT just ESC/Enter).

Wei Mingzhi 7 年之前
父节点
当前提交
43a764478e
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2 3
      text.c

+ 2 - 3
text.c

@@ -1194,7 +1194,6 @@ PAL_DialogWaitForKeyWithMaximumSeconds(
    SDL_Color   *pCurrentPalette, t;
    int         i;
    uint32_t    dwBeginningTicks = SDL_GetTicks();
-   int         iRepeatingKey;
 
    //
    // get the current palette
@@ -1244,13 +1243,13 @@ PAL_DialogWaitForKeyWithMaximumSeconds(
 
          VIDEO_SetPalette(palette);
       }
-      
+
       if (fabs(fMaxSeconds) > FLT_EPSILON && SDL_GetTicks() - dwBeginningTicks > 1000 * fMaxSeconds)
       {
          break;
       }
 
-      if ((g_InputState.dwKeyPress & kKeySearch) || (g_InputState.dwKeyPress & kKeyMenu))
+      if (g_InputState.dwKeyPress != 0)
       {
          break;
       }