Guest User

Untitled

a guest
Nov 23rd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. Index: code/sys/con_win32.c
  2. ===================================================================
  3. --- code/sys/con_win32.c (revision 2163)
  4. +++ code/sys/con_win32.c (working copy)
  5. @@ -326,14 +326,15 @@
  6. }
  7. }
  8.  
  9. - CON_Show();
  10. -
  11. - if( newlinepos < 0)
  12. + if( newlinepos < 0) {
  13. + CON_Show();
  14. return NULL;
  15. + }
  16.  
  17. if( !qconsole_linelen )
  18. {
  19. Com_Printf( "\n" );
  20. + CON_Show();
  21. return NULL;
  22. }
  23.  
  24. @@ -341,6 +342,7 @@
  25. Com_Printf( "%s\n", qconsole_line );
  26.  
  27. qconsole_linelen = 0;
  28. + CON_Show();
  29.  
  30. return qconsole_line;
  31. }
Add Comment
Please, Sign In to add comment